/[drupal]/contributions/modules/index/index.module
ViewVC logotype

Diff of /contributions/modules/index/index.module

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

revision 1.1.2.11 by xano, Tue Nov 17 16:08:36 2009 UTC revision 1.1.2.12 by xano, Tue Nov 17 17:46:41 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: index.module,v 1.1.2.10 2009/11/08 20:11:49 xano Exp $  // $Id: index.module,v 1.1.2.11 2009/11/17 16:08:36 xano Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 22  function index_menu() { Line 22  function index_menu() {
22      'description' => 'Create indexes.',      'description' => 'Create indexes.',
23      'access arguments' => array('administer index'),      'access arguments' => array('administer index'),
24      'page callback' => 'index_overview',      'page callback' => 'index_overview',
25      'file' => 'index.overview.inc',      'file' => 'index.admin.inc',
26      'file path' => drupal_get_path('module', 'index') . '/includes',      'file path' => drupal_get_path('module', 'index') . '/includes',
27    );    );
28    $items['admin/build/index/overview'] = array(    $items['admin/build/index/overview'] = array(
29      'title' => 'Indexes',      'title' => 'Indexes',
30      'access arguments' => array('administer index'),      'access arguments' => array('administer index'),
31      'type' => MENU_DEFAULT_LOCAL_TASK,      'type' => MENU_DEFAULT_LOCAL_TASK,
32      'file' => 'index.overview.inc',      'file' => 'index.admin.inc',
33      'file path' => drupal_get_path('module', 'index') . '/includes',      'file path' => drupal_get_path('module', 'index') . '/includes',
34    );    );
35    $items['admin/build/index/add'] = array(    $items['admin/build/index/add'] = array(
# Line 38  function index_menu() { Line 38  function index_menu() {
38      'page callback' => 'drupal_get_form',      'page callback' => 'drupal_get_form',
39      'page arguments' => array('index_form_add'),      'page arguments' => array('index_form_add'),
40      'type' => MENU_LOCAL_TASK,      'type' => MENU_LOCAL_TASK,
41      'file' => 'index.form.inc',      'file' => 'index.admin.inc',
42      'file path' => drupal_get_path('module', 'index') . '/includes',      'file path' => drupal_get_path('module', 'index') . '/includes',
43      'weight' => 1,      'weight' => 1,
44    );    );
# Line 48  function index_menu() { Line 48  function index_menu() {
48      'page callback' => 'drupal_get_form',      'page callback' => 'drupal_get_form',
49      'page arguments' => array('index_form_add', 4),      'page arguments' => array('index_form_add', 4),
50      'type' => MENU_CALLBACK,      'type' => MENU_CALLBACK,
51      'file' => 'index.form.inc',      'file' => 'index.admin.inc',
52      'file path' => drupal_get_path('module', 'index') . '/includes',      'file path' => drupal_get_path('module', 'index') . '/includes',
53    );    );
54    $items['admin/build/index/delete/%'] = array(    $items['admin/build/index/delete/%'] = array(
# Line 57  function index_menu() { Line 57  function index_menu() {
57      'page callback' => 'drupal_get_form',      'page callback' => 'drupal_get_form',
58      'page arguments' => array('index_form_delete', 4),      'page arguments' => array('index_form_delete', 4),
59      'type' => MENU_CALLBACK,      'type' => MENU_CALLBACK,
60      'file' => 'index.form.inc',      'file' => 'index.admin.inc',
61      'file path' => drupal_get_path('module', 'index') . '/includes',      'file path' => drupal_get_path('module', 'index') . '/includes',
62    );    );
63    $items['admin/build/index/preview'] = array(    $items['admin/build/index/preview'] = array(
# Line 65  function index_menu() { Line 65  function index_menu() {
65      'access arguments' => array('administer index'),      'access arguments' => array('administer index'),
66      'page callback' => 'index_preview',      'page callback' => 'index_preview',
67      'type' => MENU_CALLBACK,      'type' => MENU_CALLBACK,
68      'file' => 'index.form.inc',      'file' => 'index.admin.inc',
69      'file path' => drupal_get_path('module', 'index') . '/includes',      'file path' => drupal_get_path('module', 'index') . '/includes',
70    );    );
71    

Legend:
Removed from v.1.1.2.11  
changed lines
  Added in v.1.1.2.12

  ViewVC Help
Powered by ViewVC 1.1.3