This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/drupal/console/templates/module/routing-form.yml.twig
2018-11-23 12:29:20 +00:00

19 lines
380 B
Twig

{% if class_name is defined %}
{{ module_name }}.{{form_id}}:
path: '{{ path }}'
defaults:
_form: '\Drupal\{{ module_name }}\Form\{{ class_name }}'
_title: '{{ class_name }}'
{% if config_form %}
requirements:
_permission: 'access administration pages'
options:
_admin_route: TRUE
{% else %}
requirements:
_access: 'TRUE'
{% endif %}
{% endif %}