PHP Classes

File: vendor/sensio/generator-bundle/Resources/skeleton/crud/config/routing.yml.twig

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/sensio/generator-bundle/Resources/skeleton/crud/config/routing.yml.twig   Download  
File: vendor/sensio/generator-bundle/Resources/skeleton/crud/config/routing.yml.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Papernic
Manage documents colaboratively
Author: By
Last change:
Date: 7 years ago
Size: 896 bytes
 

Contents

Class file image Download
{% if 'index' in actions %} {{ route_name_prefix }}_index: path: / defaults: { _controller: "{{ bundle }}:{{ entity }}:index" } methods: GET {% endif %} {% if 'show' in actions %} {{ route_name_prefix }}_show: path: /{id}/show defaults: { _controller: "{{ bundle }}:{{ entity }}:show" } methods: GET {% endif %} {% if 'new' in actions %} {{ route_name_prefix }}_new: path: /new defaults: { _controller: "{{ bundle }}:{{ entity }}:new" } methods: [GET, POST] {% endif %} {% if 'edit' in actions %} {{ route_name_prefix }}_edit: path: /{id}/edit defaults: { _controller: "{{ bundle }}:{{ entity }}:edit" } methods: [GET, POST] {% endif %} {% if 'delete' in actions %} {{ route_name_prefix }}_delete: path: /{id}/delete defaults: { _controller: "{{ bundle }}:{{ entity }}:delete" } methods: DELETE {% endif %}