diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 11 | ||||
-rw-r--r-- | modules/system/system.module | 5 |
2 files changed, 13 insertions, 3 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 72f49b9a4..e48c583a7 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1711,7 +1711,8 @@ function system_batch_page() { * @param $block * An array containing information about the block. It should * include a 'title', a 'description' and a formatted 'content'. - * @themeable + * + * @ingroup themeable */ function theme_admin_block($block) { // Don't display the block if it has no content to display. @@ -1741,7 +1742,8 @@ EOT; * @param $block * An array containing information about the block. It should * include a 'title', a 'description' and a formatted 'content'. - * @themeable + * + * @ingroup themeable */ function theme_admin_block_content($content) { if (!$content) { @@ -1778,7 +1780,8 @@ function theme_admin_block_content($content) { * 'title', a 'description', a formatted 'content' and a * 'position' which will control which container it will be * in. This is usually 'left' or 'right'. - * @themeable + * + * @ingroup themeable */ function theme_admin_page($blocks) { $stripe = 0; @@ -1818,6 +1821,8 @@ function theme_admin_page($blocks) { /** * Theme output of the dashboard page. + * + * @ingroup themeable */ function theme_system_admin_by_module($menu_items) { $stripe = 0; diff --git a/modules/system/system.module b/modules/system/system.module index ca8e54703..4849b7489 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1706,6 +1706,11 @@ function _system_zonelist() { return $zones; } +/** + * Format the Powered by Drupal text. + * + * @ingroup themeable + */ function theme_system_powered_by($image_path) { $image = theme('image', $image_path, t('Powered by Drupal, an open source content management system'), t('Powered by Drupal, an open source content management system')); return l($image, 'http://drupal.org', array('html' => TRUE, 'absolute' => TRUE, 'external' => TRUE)); |