function nodeapi_example_theme

Implements hook_theme().

This lets us tell Drupal about our theme functions and their arguments.

Related topics

File

nodeapi_example/nodeapi_example.module, line 248

Code

function nodeapi_example_theme() {
    return array(
        'nodeapi_example_rating' => array(
            'variables' => array(
                'rating' => NULL,
            ),
        ),
    );
}