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="@url">Backdrop CMS</a>', array('@url' => 'https://backdropcms.org')) . '</span>';
}