nodeapi_example_theme
- Versions
- 6 – 7
nodeapi_example_theme()
Implementation of hook_theme().
This lets us tell Drupal about our theme functions and their arguments.
Code
developer/examples/nodeapi_example.module, line 128
<?php
function nodeapi_example_theme() {
return array(
'nodeapi_example_rating' => array(
'arguments' => array('rating'),
),
);
}
?>Login or register to post comments 