function theme_system_powered_by

Returns HTML for the Powered by Drupal text.

Related topics

1 theme call to theme_system_powered_by()
SystemPoweredByBlock::build in drupal/core/modules/system/lib/Drupal/system/Plugin/Block/SystemPoweredByBlock.php
Builds and returns the renderable array for this block plugin.

File

drupal/core/modules/system/system.module, line 3520
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>';
}