function node_example_theme

Implements hook_theme().

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

Related topics

File

node_example/node_example.module, line 249

Code

function node_example_theme($existing, $type, $theme, $path) {
    return array(
        'example_node_color' => array(
            'variables' => array(
                'color' => NULL,
            ),
        ),
    );
}