| 63 |
'type' => MENU_DEFAULT_LOCAL_TASK, |
'type' => MENU_DEFAULT_LOCAL_TASK, |
| 64 |
'weight' => -10, |
'weight' => -10, |
| 65 |
); |
); |
| 66 |
|
|
| 67 |
$items['admin/build/term_queue/add'] = array( |
$items['admin/build/term_queue/add'] = array( |
| 68 |
'title' => 'Add Term Queue', |
'title' => 'Add Term Queue', |
| 69 |
'page callback' => 'drupal_get_form', |
'page callback' => 'drupal_get_form', |
| 72 |
'type' => MENU_LOCAL_TASK, |
'type' => MENU_LOCAL_TASK, |
| 73 |
'file' => 'term_queue.admin.inc', |
'file' => 'term_queue.admin.inc', |
| 74 |
); |
); |
| 75 |
|
|
| 76 |
|
$items['admin/build/term_queue/settings'] = array( |
| 77 |
|
'title' => 'Settings', |
| 78 |
|
'page callback' => 'drupal_get_form', |
| 79 |
|
'page arguments' => array('term_queue_settings_form'), |
| 80 |
|
'access arguments' => array('administer term queue'), |
| 81 |
|
'type' => MENU_LOCAL_TASK, |
| 82 |
|
'file' => 'term_queue.admin.inc', |
| 83 |
|
); |
| 84 |
|
|
| 85 |
$items['admin/build/term_queue/%term_queue/edit'] = array( |
$items['admin/build/term_queue/%term_queue/edit'] = array( |
| 86 |
'title' => 'Edit Term Queue', |
'title' => 'Edit Term Queue', |
| 87 |
'page callback' => 'term_queue_edit_form', |
'page callback' => 'term_queue_edit_form', |
| 129 |
'file' => 'term_queue.admin.inc', |
'file' => 'term_queue.admin.inc', |
| 130 |
); |
); |
| 131 |
|
|
| 132 |
|
$items['term_queue/autocomplete'] = array( |
| 133 |
|
'title' => t('term auto complete'), |
| 134 |
|
'page callback' => 'term_queue_autocomplete_term', |
| 135 |
|
'access arguments' => array('administer term queue'), |
| 136 |
|
'file' => 'term_queue.admin.inc', |
| 137 |
|
'type' => MENU_CALLBACK, |
| 138 |
|
); |
| 139 |
return $items; |
return $items; |
| 140 |
} |
} |
| 141 |
|
|