function weight_theme in Weight 7
Same name and namespace in other branches
- 6 weight.module \weight_theme()
Implements hook_theme().
File
- ./
weight.module, line 355 - This module uses the sticky column of the node table to add weighting to nodes.
Code
function weight_theme() {
return array(
'weight_view_weight_form' => array(
'render element' => 'form',
'template' => 'weight-view-weight-form',
),
'weight_node_admin_nodes' => array(
'arguments' => array(
'form' => NULL,
),
),
);
}