2013-09-15 19:59:49 +00:00
|
|
|
book.render:
|
2013-09-16 05:06:19 +00:00
|
|
|
path: '/book'
|
2013-04-15 21:19:00 +00:00
|
|
|
defaults:
|
2014-11-20 09:47:06 +00:00
|
|
|
_controller: '\Drupal\book\Controller\BookController::bookRender'
|
2013-11-28 07:44:52 +00:00
|
|
|
_title: 'Books'
|
2013-04-15 21:19:00 +00:00
|
|
|
requirements:
|
|
|
|
_permission: 'access content'
|
|
|
|
|
2013-09-15 19:59:49 +00:00
|
|
|
book.admin:
|
2013-09-16 05:06:19 +00:00
|
|
|
path: '/admin/structure/book'
|
2013-04-15 21:19:00 +00:00
|
|
|
defaults:
|
2014-11-20 09:47:06 +00:00
|
|
|
_controller: '\Drupal\book\Controller\BookController::adminOverview'
|
2013-11-28 07:44:52 +00:00
|
|
|
_title: 'Books'
|
2013-04-15 21:19:00 +00:00
|
|
|
requirements:
|
|
|
|
_permission: 'administer book outlines'
|
|
|
|
|
2013-09-15 19:59:49 +00:00
|
|
|
book.settings:
|
2013-09-16 05:06:19 +00:00
|
|
|
path: '/admin/structure/book/settings'
|
2013-03-10 06:35:07 +00:00
|
|
|
defaults:
|
2013-09-13 15:12:36 +00:00
|
|
|
_form: '\Drupal\book\Form\BookSettingsForm'
|
2013-11-28 07:44:52 +00:00
|
|
|
_title: 'Books'
|
2013-03-10 06:35:07 +00:00
|
|
|
requirements:
|
|
|
|
_permission: 'administer site configuration'
|
Issue #1938314 by kgoel, mparker17, Kars-T, disasm, tim.plunkett, daffodil_naveen, ygerasimov, jibran, dawehner, wamilton, Letharion | Crell: Convert book_export() to a new-style Controller.
2013-09-02 20:51:11 +00:00
|
|
|
|
2013-09-15 19:59:49 +00:00
|
|
|
book.export:
|
2013-09-16 05:06:19 +00:00
|
|
|
path: '/book/export/{type}/{node}'
|
Issue #1938314 by kgoel, mparker17, Kars-T, disasm, tim.plunkett, daffodil_naveen, ygerasimov, jibran, dawehner, wamilton, Letharion | Crell: Convert book_export() to a new-style Controller.
2013-09-02 20:51:11 +00:00
|
|
|
defaults:
|
|
|
|
_controller: '\Drupal\book\Controller\BookController::bookExport'
|
|
|
|
requirements:
|
|
|
|
_permission: 'access printer-friendly version'
|
|
|
|
_entity_access: 'node.view'
|
2013-09-13 15:12:36 +00:00
|
|
|
|
2014-10-12 21:27:26 +00:00
|
|
|
entity.node.book_outline_form:
|
2013-09-16 05:06:19 +00:00
|
|
|
path: '/node/{node}/outline'
|
2013-09-13 15:12:36 +00:00
|
|
|
defaults:
|
|
|
|
_entity_form: 'node.book_outline'
|
2013-11-28 07:44:52 +00:00
|
|
|
_title: 'Outline'
|
2013-09-13 15:12:36 +00:00
|
|
|
requirements:
|
|
|
|
_permission: 'administer book outlines'
|
|
|
|
_entity_access: 'node.view'
|
2014-03-21 12:35:45 +00:00
|
|
|
options:
|
|
|
|
_node_operation_route: TRUE
|
2013-09-15 06:46:48 +00:00
|
|
|
|
2013-09-15 19:59:49 +00:00
|
|
|
book.admin_edit:
|
2013-09-16 05:06:19 +00:00
|
|
|
path: '/admin/structure/book/{node}'
|
2013-09-15 06:46:48 +00:00
|
|
|
defaults:
|
|
|
|
_form: 'Drupal\book\Form\BookAdminEditForm'
|
|
|
|
_title: 'Re-order book pages and change titles'
|
|
|
|
requirements:
|
|
|
|
_permission: 'administer book outlines'
|
|
|
|
_entity_access: 'node.view'
|
|
|
|
node: \d+
|
2013-09-21 11:42:43 +00:00
|
|
|
|
2014-10-12 21:27:26 +00:00
|
|
|
entity.node.book_remove_form:
|
2013-09-21 11:42:43 +00:00
|
|
|
path: '/node/{node}/outline/remove'
|
|
|
|
defaults:
|
2013-12-04 05:59:13 +00:00
|
|
|
_form: '\Drupal\book\Form\BookRemoveForm'
|
2013-09-21 11:42:43 +00:00
|
|
|
_title: 'Remove from outline'
|
|
|
|
options:
|
|
|
|
_access_mode: 'ALL'
|
2014-03-21 12:35:45 +00:00
|
|
|
_node_operation_route: TRUE
|
2013-09-21 11:42:43 +00:00
|
|
|
requirements:
|
|
|
|
_permission: 'administer book outlines'
|
|
|
|
_entity_access: 'node.view'
|
|
|
|
_access_book_removable: 'TRUE'
|