function 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 modules/
system/ system.module - Implements hook_block_view().
File
-
modules/
system/ system.module, line 3464
Code
function theme_system_powered_by() {
return '<span>' . t('Powered by <a href="@poweredby">Drupal</a>', array(
'@poweredby' => 'https://www.drupal.org',
)) . '</span>';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.