/[drupal]/contributions/modules/help_soc/help/help.module
ViewVC logotype

Diff of /contributions/modules/help_soc/help/help.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.14, Tue Aug 12 18:16:39 2008 UTC revision 1.15, Sun Aug 17 20:56:18 2008 UTC
# Line 52  function help_menu() { Line 52  function help_menu() {
52      'page callback' => 'help_index_page',      'page callback' => 'help_index_page',
53      'access arguments' => array('access help'),      'access arguments' => array('access help'),
54      'weight' => 9,      'weight' => 9,
     'help' => $help,  
55    );    );
56    $items['admin/help/by-module'] = array(    $items['admin/help/by-topic'] = array(
57      'title' => 'By module',      'title' => 'By topic',
58      'page callback' => 'help_index_page',      'page callback' => 'help_index_page',
59      'access arguments' => array('access help'),      'access arguments' => array('access help'),
60      'type' => MENU_DEFAULT_LOCAL_TASK,      'type' => MENU_DEFAULT_LOCAL_TASK,
61      'parent' => 'admin/help',      'parent' => 'admin/help',
62    );    );
63      $items['admin/help/by-module'] = array(
64        'title' => 'By module',
65        'page callback' => 'help_by_module',
66        'access arguments' => array('access help'),
67        'help' => $help,
68        'parent' => 'admin/help',
69        'type' => MENU_LOCAL_TASK,
70        'weight' => 9
71      );
72    $items['admin/help/%'] = array(    $items['admin/help/%'] = array(
73      'page callback' => 'help_topic_page',      'page callback' => 'help_topic_page',
74      'page arguments' => array(2),      'page arguments' => array(2),
75      'access arguments' => array('access help'),      'access arguments' => array('access help'),
76        'parent' => 'admin/help',
77      'type' => MENU_CALLBACK,      'type' => MENU_CALLBACK,
78    );    );
79    $items['admin/help/%/%'] = array(    $items['admin/help/%/%'] = array(
80      'page callback' => 'help_topic_page',      'page callback' => 'help_topic_page',
81      'page arguments' => array(2, 3),      'page arguments' => array(2, 3),
82      'access arguments' => array('access help'),      'access arguments' => array('access help'),
83        'parent' => 'admin/help',
84      'type' => MENU_CALLBACK,      'type' => MENU_CALLBACK,
85    );    );
86    

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

  ViewVC Help
Powered by ViewVC 1.1.2