You are here

entity_export_csv.routing.yml in Entity Export CSV 8

File

entity_export_csv.routing.yml
View source
  1. entity_export_csv.config_content:
  2. path: '/admin/config/content/entity-export-csv'
  3. defaults:
  4. _controller: '\Drupal\system\Controller\SystemController::systemAdminMenuBlockPage'
  5. _title: 'Entity Export CSV'
  6. requirements:
  7. _permission: 'administer entity export csv'
  8. options:
  9. _admin_route: TRUE
  10. entity_export_csv.settings:
  11. path: '/admin/config/content/entity-export-csv/settings'
  12. defaults:
  13. _title: 'Entity Export CSV Settings'
  14. _form: \Drupal\entity_export_csv\Form\EntityExportCsvSettings
  15. requirements:
  16. _permission: 'administer entity export csv'
  17. entity_export_csv.export_form:
  18. path: '/admin/content/entity-export-csv'
  19. defaults:
  20. _title: 'Export CSV'
  21. _form: \Drupal\entity_export_csv\Form\EntityExportCsv
  22. requirements:
  23. _permission: 'use entity export csv'
  24. entity_export_csv.download:
  25. path: '/admin/content/entity-export-csv/download'
  26. defaults:
  27. _controller: \Drupal\entity_export_csv\Controller\EntityExportCsvDownload::downloadExport
  28. requirements:
  29. _permission: 'use entity export csv'