1 node_hooks_example.module | node_hooks_example_theme() |
Implements hook_theme().
This lets us tell Backdrop about our theme functions and their arguments.
Related topics
File
- modules/
examples/ node_hooks_example/ node_hooks_example.module, line 242 - Hook implementations for the Node Hooks Example module.
Code
function node_hooks_example_theme() {
return array('node_hooks_example_rating' => array('variables' => array('rating' => NULL)));
}