1.20.x system.theme.inc theme_system_powered_by()

Returns HTML for the Powered by Silkscreen text.

Related topics

File

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