PHP Classes

File: vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/form_csrf_under_form_sets_field_name.php

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/form_csrf_under_form_sets_field_name.php   Download  
File: vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/form_csrf_under_form_sets_field_name.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Papernic
Manage documents colaboratively
Author: By
Last change:
Date: 7 years ago
Size: 369 bytes
 

Contents

Class file image Download
<?php

$container
->loadFromExtension('framework', array(
   
'csrf_protection' => array(
       
'enabled' => true,
       
'field_name' => '_custom',
    ),
   
'form' => array(
       
'enabled' => true,
       
'csrf_protection' => array(
           
'field_name' => '_custom_form',
        ),
    ),
   
'session' => array(
       
'handler_id' => null,
    ),
));