You are here

function weight_theme in Weight 6

Same name and namespace in other branches
  1. 7 weight.module \weight_theme()

Implementation of hook_theme().

File

./weight.module, line 512
This module uses the sticky column of the node table to add weighting to nodes.

Code

function weight_theme() {
  return array(
    'weight_view_weight' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'template' => 'weight-view-weight',
      'path' => drupal_get_path('module', 'weight') . '/theme',
    ),
    'weight_ui_style_plugin' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'weight_node_admin_nodes' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}