Posted By

zugec on 05/21/09


Tagged

drupal hooktheme


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

electblake


Using hook_theme


 / Published in: PHP
 

  1. /**
  2.  * Implementation of hook_theme().
  3.  */
  4. function hook_theme() {
  5. return array(
  6. 'theme_name' => array(
  7. 'template' => 'theme-name',
  8. 'arguments' => array('node' => NULL),
  9. ),
  10. );
  11. }

Report this snippet  

You need to login to post a comment.