| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_system_powered_by($image_path) |
Format the Powered by Drupal text.
modules/
<?php
function theme_system_powered_by($image_path) {
$image = theme('image', $image_path, t('Powered by Drupal, an open source content management system'), t('Powered by Drupal, an open source content management system'));
return l($image, 'http://drupal.org', array('html' => TRUE, 'absolute' => TRUE, 'external' => TRUE));
}
?>
Kommentare
Kommentar hinzufügen