function nodereference_count_theme in Nodereference Count 6
Implementation of hook_theme().
File
- ./
nodereference_count.module, line 318 - Defines a field type for counting the references to a node.
Code
function nodereference_count_theme() {
return array(
'nodereference_count_formatter_default' => array(
'arguments' => array(
'element' => NULL,
),
),
'nodereference_count_formatter_nonzero' => array(
'arguments' => array(
'element' => NULL,
),
),
);
}