This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Form/Extension/Csrf/CsrfExtension.php

41 lines
934 B
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
2011-04-24 12:59:46 +01:00
* (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;
use Symfony\Component\Form\Extension\Csrf\Type;
use Symfony\Component\Form\Extension\Csrf\CsrfProvider\CsrfProviderInterface;
use Symfony\Component\Form\AbstractExtension;
class CsrfExtension extends AbstractExtension
{
private $csrfProvider;
public function __construct(CsrfProviderInterface $csrfProvider)
{
$this->csrfProvider = $csrfProvider;
}
protected function loadTypes()
{
return array(
new Type\CsrfType($this->csrfProvider),
);
}
protected function loadTypeExtensions()
{
return array(
new Type\FormTypeCsrfExtension(),
);
}
}