entity_print.routing.yml in Entity Print 8
Same filename and directory in other branches
8 string references to YAML keys in entity_print.routing.yml
- EntityPrintController::viewPdf in src/
Controller/ EntityPrintController.php - Output an entity as a PDF.
- EntityPrintTest::testEntityPrintThemeCss in src/
Tests/ EntityPrintTest.php - Test that CSS is parsed from our test theme correctly.
- entity_print_entity_view_alter in ./
entity_print.module - Implements hook_entity_view_alter().
- entity_print_post_update_migrate_config in ./
entity_print.post_update.php - Migrate simple config into new config entities.
- PdfDownload::access in src/
Plugin/ Action/ PdfDownload.php - Checks object access.
File
entity_print.routing.ymlView source
- entity_print.view:
- path: 'entityprint/{entity_type}/{entity_id}'
- defaults:
- _controller: '\Drupal\entity_print\Controller\EntityPrintController::viewPdf'
- _title: 'Entity Print'
- requirements:
- _custom_access: '\Drupal\entity_print\Controller\EntityPrintController::checkAccess'
-
- entity_print.view.debug:
- path: 'entityprint/{entity_type}/{entity_id}/debug'
- defaults:
- _controller: '\Drupal\entity_print\Controller\EntityPrintController::viewPdfDebug'
- _title: 'Entity Print Debug'
- requirements:
- _custom_access: '\Drupal\entity_print\Controller\EntityPrintController::checkAccess'
-
- entity_print.settings:
- path: 'admin/config/content/entityprint'
- defaults:
- _form: '\Drupal\entity_print\Form\SettingsForm'
- _title: 'Entity Print'
- requirements:
- _permission: 'administer entity print'