function theme_system_powered_by
Same name and namespace in other branches
- 7.x drupal-7.x/modules/system/system.module \theme_system_powered_by()
Format the Powered by Drupal text.
Related topics
1 theme call to theme_system_powered_by()
- system_block in drupal-6.x/
modules/ system/ system.module - Implementation of hook_block().
Archivo
- drupal-6.x/
modules/ system/ system.module, line 1972 - Configuration system that lets administrators modify the workings of the site.
Código
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));
}