Full ELMS Learning Network documentation
function theme_system_powered_by
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 system.module | theme_system_powered_by() |
cle7 system.module | theme_system_powered_by() |
elmsmedia7 system.module | theme_system_powered_by() |
icor7 system.module | theme_system_powered_by() |
meedjum_blog7 system.module | theme_system_powered_by() |
mooc7 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 modules/
system/ system.module - Implements hook_block_view().
2 string references to the theme hook from theme_system_powered_by()
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- system_block_view in modules/
system/ system.module - Implements hook_block_view().
- system_theme in modules/
system/ system.module - Implements hook_theme().
File
- modules/
system/ system.module, line 3387 - Configuration system that lets administrators modify the workings of the site.
Code
function theme_system_powered_by() {
return '<span>' . t('Powered by <a href="@poweredby">Drupal</a>', array('@poweredby' => 'http://drupal.org')) . '</span>';
}