function theme_system_powered_by
Same name and namespace in other branches
- 6.x drupal-6.x/modules/system/system.module \theme_system_powered_by()
Returns HTML for the Powered by Drupal text.
Related topics
1 theme call to theme_system_powered_by()
- system_block_view in drupal-7.x/
modules/ system/ system.module - Implements hook_block_view().
Archivo
- drupal-7.x/
modules/ system/ system.module, line 3387 - Configuration system that lets administrators modify the workings of the site.
Código
function theme_system_powered_by() {
return '<span>' . t('Powered by <a href="@poweredby">Drupal</a>', array('@poweredby' => 'http://drupal.org')) . '</span>';
}