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.module | |
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.module')
-rw-r--r-- | modules/system/system.module | 5 |
1 files changed, 5 insertions, 0 deletions
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)); |