1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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;
- use Symfony\Component\Form\Extension\Csrf\Type;
- use Symfony\Component\Form\Extension\Csrf\CsrfProvider\CsrfProviderInterface;
- use Symfony\Component\Form\AbstractExtension;
- /**
- * This extension protects forms by using a CSRF token
- */
- class CsrfExtension extends AbstractExtension
- {
- private $csrfProvider;
- /**
- * Constructor.
- *
- * @param CsrfProviderInterface $csrfProvider The CSRF provider
- */
- public function __construct(CsrfProviderInterface $csrfProvider)
- {
- $this->csrfProvider = $csrfProvider;
- }
- /**
- * {@inheritDoc}
- */
- protected function loadTypes()
- {
- return array(
- new Type\CsrfType($this->csrfProvider),
- );
- }
- /**
- * {@inheritDoc}
- */
- protected function loadTypeExtensions()
- {
- return array(
- new Type\ChoiceTypeCsrfExtension(),
- new Type\DateTypeCsrfExtension(),
- new Type\FileTypeCsrfExtension(),
- new Type\FormTypeCsrfExtension(),
- new Type\RepeatedTypeCsrfExtension(),
- new Type\TimeTypeCsrfExtension(),
- );
- }
- }
|