1 system.theme.inc theme_system_powered_by()

Returns HTML for the Powered by Backdrop text.

Related topics

File

core/modules/system/system.theme.inc, line 12
Theme functions for the System module.

Code

function theme_system_powered_by() {
  return '<span>' . t('Powered by <a href="@poweredby">Backdrop CMS</a>', array('@poweredby' => 'https://backdropcms.org')) . '</span>';
}