2013-09-15 19:59:49 +00:00
|
|
|
search.settings:
|
2013-09-16 05:06:19 +00:00
|
|
|
path: '/admin/config/search/settings'
|
2013-06-13 21:55:33 +00:00
|
|
|
defaults:
|
2014-01-08 17:05:22 +00:00
|
|
|
_entity_list: 'search_page'
|
2013-11-28 07:44:52 +00:00
|
|
|
_title: 'Search settings'
|
2013-06-13 21:55:33 +00:00
|
|
|
requirements:
|
|
|
|
_permission: 'administer search'
|
2013-09-15 19:59:49 +00:00
|
|
|
|
|
|
|
search.reindex_confirm:
|
2013-09-16 05:06:19 +00:00
|
|
|
path: '/admin/config/search/settings/reindex'
|
2013-04-06 21:46:47 +00:00
|
|
|
defaults:
|
2013-10-26 21:17:27 +00:00
|
|
|
_form: '\Drupal\search\Form\ReindexConfirm'
|
2013-11-28 07:44:52 +00:00
|
|
|
_title: 'Clear index'
|
2013-04-06 21:46:47 +00:00
|
|
|
requirements:
|
|
|
|
_permission: 'administer search'
|
2013-09-18 18:30:30 +00:00
|
|
|
|
2014-01-08 17:05:22 +00:00
|
|
|
search.add_type:
|
|
|
|
path: '/admin/config/search/settings/add/{search_plugin_id}'
|
2013-09-18 18:30:30 +00:00
|
|
|
defaults:
|
2014-01-08 17:05:22 +00:00
|
|
|
_entity_form: 'search_page.add'
|
|
|
|
_title: 'Add new search page'
|
2013-09-18 18:30:30 +00:00
|
|
|
requirements:
|
2014-01-08 17:05:22 +00:00
|
|
|
_entity_create_access: 'search_page'
|
|
|
|
|
|
|
|
search.edit:
|
|
|
|
path: '/admin/config/search/settings/manage/{search_page}'
|
|
|
|
defaults:
|
|
|
|
_entity_form: 'search_page.edit'
|
|
|
|
_title_callback: '\Drupal\search\Controller\SearchController::editTitle'
|
|
|
|
requirements:
|
|
|
|
_entity_access: 'search_page.update'
|
|
|
|
|
|
|
|
search.enable:
|
|
|
|
path: '/admin/config/search/settings/manage/{search_page}/enable'
|
|
|
|
defaults:
|
|
|
|
_controller: '\Drupal\search\Controller\SearchController::performOperation'
|
|
|
|
op: 'enable'
|
|
|
|
requirements:
|
|
|
|
_entity_access: 'search_page.update'
|
|
|
|
|
|
|
|
search.disable:
|
|
|
|
path: '/admin/config/search/settings/manage/{search_page}/disable'
|
|
|
|
defaults:
|
|
|
|
_controller: '\Drupal\search\Controller\SearchController::performOperation'
|
|
|
|
op: 'disable'
|
|
|
|
requirements:
|
|
|
|
_entity_access: 'search_page.disable'
|
|
|
|
|
|
|
|
search.set_default:
|
|
|
|
path: '/admin/config/search/settings/manage/{search_page}/set-default'
|
|
|
|
defaults:
|
|
|
|
_controller: '\Drupal\search\Controller\SearchController::setAsDefault'
|
|
|
|
requirements:
|
|
|
|
_entity_access: 'search_page.update'
|
|
|
|
|
|
|
|
search.delete:
|
|
|
|
path: '/admin/config/search/settings/manage/{search_page}/delete'
|
|
|
|
defaults:
|
|
|
|
_entity_form: 'search_page.delete'
|
|
|
|
requirements:
|
|
|
|
_entity_access: 'search_page.delete'
|
2013-12-18 20:09:35 +00:00
|
|
|
|
|
|
|
route_callbacks:
|
2014-01-08 17:05:22 +00:00
|
|
|
- '\Drupal\search\Routing\SearchPageRoutes::routes'
|