function node_limit_theme in Node Limit 7
Same name and namespace in other branches
- 8 node_limit.module \node_limit_theme()
- 8 old/node_limit.module \node_limit_theme()
- 6 node_limit.module \node_limit_theme()
Implements hook_theme(). Register the two forms that require custom rendering.
File
- ./
node_limit.module, line 186
Code
function node_limit_theme() {
return array(
// 'node_limit_limit_form' => array(
// 'render element' => 'form',
// ),
'node_limit_list_limits' => array(
'render element' => 'form',
),
);
}