function apachesolr_attachments_menu in Apache Solr Attachments 7
Same name and namespace in other branches
- 5 apachesolr_attachments.module \apachesolr_attachments_menu()
- 6.3 apachesolr_attachments.module \apachesolr_attachments_menu()
- 6 apachesolr_attachments.module \apachesolr_attachments_menu()
- 6.2 apachesolr_attachments.module \apachesolr_attachments_menu()
Implements hook_menu().
File
- ./
apachesolr_attachments.module, line 12 - Provides a file attachment search implementation for use with the Apache Solr module
Code
function apachesolr_attachments_menu() {
$items = array();
$items['admin/config/search/apachesolr/attachments'] = array(
'title' => 'Attachments',
'description' => 'Administer Apache Solr Attachments.',
'page callback' => 'apachesolr_attachments_admin_page',
'access arguments' => array(
'administer search',
),
'file' => 'apachesolr_attachments.admin.inc',
'type' => MENU_LOCAL_TASK,
);
$items['admin/config/search/apachesolr/attachments/test'] = array(
'title' => 'Test tika extraction',
'page callback' => 'apachesolr_attachments_test_tika_extraction',
'access arguments' => array(
'administer search',
),
'file' => 'apachesolr_attachments.admin.inc',
'type' => MENU_CALLBACK,
);
$items['admin/config/search/apachesolr/attachments/confirm/delete'] = array(
'title' => 'Delete and reindex all files',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'apachesolr_attachments_confirm',
6,
),
'access arguments' => array(
'administer search',
),
'file' => 'apachesolr_attachments.admin.inc',
'type' => MENU_CALLBACK,
);
$items['admin/config/search/apachesolr/attachments/confirm/clear-cache'] = array(
'title' => 'Delete the local cache of file text',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'apachesolr_attachments_confirm',
6,
),
'access arguments' => array(
'administer search',
),
'file' => 'apachesolr_attachments.admin.inc',
'type' => MENU_CALLBACK,
);
$items['admin/config/search/apachesolr/attachments/general'] = array(
'title' => 'General',
'type' => MENU_DEFAULT_LOCAL_TASK,
);
$items['admin/config/search/apachesolr/attachments/entity_bundle'] = array(
'title' => 'Bundle',
'description' => 'Administer Apache Solr Attachments per bundle settings.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'apachesolr_attachments_entity_bundle_settings',
),
'access arguments' => array(
'administer search',
),
'file' => 'apachesolr_attachments.admin.inc',
'type' => MENU_LOCAL_TASK,
'weight' => 1,
);
return $items;
}