diff options
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)); |