diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-04-20 08:44:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-04-20 08:44:01 +0000 |
commit | 0337be78755e4a935bbae813c519d8a634d7e51f (patch) | |
tree | 41ba64d8b9d2f87082f370c42da06a5c6966a9e6 | |
parent | be169d59b61460116e951d28724cac3c1f383372 (diff) | |
download | brdo-0337be78755e4a935bbae813c519d8a634d7e51f.tar.gz brdo-0337be78755e4a935bbae813c519d8a634d7e51f.tar.bz2 |
- Patch #136961 by Ralf Stamm: add version information to themes and theme pages.
-rw-r--r-- | modules/system/system.module | 3 | ||||
-rw-r--r-- | themes/bluemarine/bluemarine.info | 1 | ||||
-rw-r--r-- | themes/chameleon/chameleon.info | 1 | ||||
-rw-r--r-- | themes/chameleon/marvin/marvin.info | 1 | ||||
-rw-r--r-- | themes/garland/garland.info | 1 | ||||
-rw-r--r-- | themes/garland/minnelli/minnelli.info | 1 | ||||
-rw-r--r-- | themes/pushbutton/pushbutton.info | 3 |
7 files changed, 9 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 0c2691e2f..f9cc1b336 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1226,6 +1226,7 @@ function theme_system_themes_form($form) { $row = array(); $row[] = drupal_render($form[$key]['screenshot']); $row[] = $theme; + $row[] = $info['version']; $row[] = array('data' => drupal_render($form['status'][$key]), 'align' => 'center'); if ($form['theme_default']) { $row[] = array('data' => drupal_render($form['theme_default'][$key]), 'align' => 'center'); @@ -1234,7 +1235,7 @@ function theme_system_themes_form($form) { $rows[] = $row; } - $header = array(t('Screenshot'), t('Name'), t('Enabled'), t('Default'), t('Operations')); + $header = array(t('Screenshot'), t('Name'), t('Version'), t('Enabled'), t('Default'), t('Operations')); $output = theme('table', $header, $rows); $output .= drupal_render($form); return $output; diff --git a/themes/bluemarine/bluemarine.info b/themes/bluemarine/bluemarine.info index 9ab8fb44c..366a5d3bd 100644 --- a/themes/bluemarine/bluemarine.info +++ b/themes/bluemarine/bluemarine.info @@ -1,3 +1,4 @@ ; $Id$ name = Bluemarine description = Table-based multi-column theme with a marine and ash color scheme. +version = VERSION diff --git a/themes/chameleon/chameleon.info b/themes/chameleon/chameleon.info index 7c120d336..59f492733 100644 --- a/themes/chameleon/chameleon.info +++ b/themes/chameleon/chameleon.info @@ -7,3 +7,4 @@ features[] = logo features[] = favicon features[] = name features[] = slogan +version = VERSION diff --git a/themes/chameleon/marvin/marvin.info b/themes/chameleon/marvin/marvin.info index d72deaeb6..d70394ee5 100644 --- a/themes/chameleon/marvin/marvin.info +++ b/themes/chameleon/marvin/marvin.info @@ -3,3 +3,4 @@ name = Marvin description = Boxy tabled theme in all grays. regions[left] = Left sidebar regions[right] = Right sidebar +version = VERSION diff --git a/themes/garland/garland.info b/themes/garland/garland.info index 7f2d65677..68d9c57c1 100644 --- a/themes/garland/garland.info +++ b/themes/garland/garland.info @@ -1,3 +1,4 @@ ; $Id$ name = Garland description = Tableless, recolorable, multi-column, fluid width theme (default). +version = VERSION diff --git a/themes/garland/minnelli/minnelli.info b/themes/garland/minnelli/minnelli.info index 34795cbdf..66e0d8fa9 100644 --- a/themes/garland/minnelli/minnelli.info +++ b/themes/garland/minnelli/minnelli.info @@ -1,3 +1,4 @@ ; $Id$ name = Minnelli description = Tableless, recolorable, multi-column, fixed width theme. +version = VERSION diff --git a/themes/pushbutton/pushbutton.info b/themes/pushbutton/pushbutton.info index f76b1dd3b..895373d86 100644 --- a/themes/pushbutton/pushbutton.info +++ b/themes/pushbutton/pushbutton.info @@ -1,3 +1,4 @@ ; $Id$ name = Pushbutton -description = Tabled, multi-column theme in blue and orange tones.
\ No newline at end of file +description = Tabled, multi-column theme in blue and orange tones. +version = VERSION |