theme_system_powered_by

Versions
6
theme_system_powered_by($image_path)
7
theme_system_powered_by($variables)

Format the Powered by Drupal text.

Related topics

Code

modules/system/system.module, line 1929

<?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));
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.