[Form csrf] FileTypeCsrdExtension is not required any more (as FileType now extends FieldType)

This commit is contained in:
Victor Berchet 2011-07-04 08:28:43 +02:00
parent 4259530856
commit 06c371278f
2 changed files with 0 additions and 28 deletions

View File

@ -50,7 +50,6 @@ class CsrfExtension extends AbstractExtension
return array( return array(
new Type\ChoiceTypeCsrfExtension(), new Type\ChoiceTypeCsrfExtension(),
new Type\DateTypeCsrfExtension(), new Type\DateTypeCsrfExtension(),
new Type\FileTypeCsrfExtension(),
new Type\FormTypeCsrfExtension(), new Type\FormTypeCsrfExtension(),
new Type\RepeatedTypeCsrfExtension(), new Type\RepeatedTypeCsrfExtension(),
new Type\TimeTypeCsrfExtension(), new Type\TimeTypeCsrfExtension(),

View File

@ -1,27 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Form\Extension\Csrf\Type;
use Symfony\Component\Form\AbstractTypeExtension;
class FileTypeCsrfExtension extends AbstractTypeExtension
{
public function getDefaultOptions(array $options)
{
return array('csrf_protection' => false);
}
public function getExtendedType()
{
return 'file';
}
}