diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-06 09:58:34 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-06 09:58:34 +0000 |
commit | d83289f857853b2efca194cd663267c24dbfd305 (patch) | |
tree | b950cd9d0c4df0068164d6131c2f40fafad7022f /modules/system/system.admin.inc | |
parent | baf6910cc1002c7b40b2899162a122b3ed441e6d (diff) | |
download | brdo-d83289f857853b2efca194cd663267c24dbfd305.tar.gz brdo-d83289f857853b2efca194cd663267c24dbfd305.tar.bz2 |
#196667 (GHOP 45) by fberci: add '@ingroup themeable' to all themeable functions
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 11 |
1 files changed, 8 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; |