| Versions | |
|---|---|
| 6 | theme_system_powered_by( |
| 7 | theme_system_powered_by() |
Returns HTML for the Powered by Drupal text.
drupal/
<?php
function theme_system_powered_by() {
return '<span>' . t('Powered by <a href="@poweredby">Drupal</a>', array('@poweredby' => 'http://drupal.org')) . '</span>';
}
?>