Drupal 6 Them Function Override

  • Find den funktion du ønsker at ændre i .module file
  • Kopier funktionens kode
  • EKSEMPEL
  • function theme_username($object) {
  • ......
  • return $output;
  • }
  • Indsæt koden i template.php
  • omdøb theme_
  • EKSEMPEL
  • function mit_navn_på_theme_username($object) {
  • ......
  • return $output;
  • }