12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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\Bundle\WebConfiguratorBundle\Step;
- use Symfony\Component\Form\FormContext;
- use Symfony\Bundle\WebConfiguratorBundle\Form\DoctrineForm;
- use Symfony\Bundle\WebConfiguratorBundle\Exception\StepRequirementException;
- /**
- * Csrf Step.
- *
- * @author Marc Weistroff <marc.weistroff@sensio.com>
- */
- class CsrfStep implements StepInterface
- {
- /**
- * @validation:NotBlank
- */
- public $csrf_secret;
- public function __construct(array $parameters)
- {
- $this->csrf_secret = $parameters['csrf_secret'];
- }
- /**
- * @see StepInterface
- */
- public function getName()
- {
- return 'CSRF';
- }
- /**
- * @see StepInterface
- */
- public function getForm(FormContext $context)
- {
- return CsrfForm::create($context, 'config');
- }
- /**
- * @see StepInterface
- */
- public function checkRequirements()
- {
- }
- /**
- * @see StepInterface
- */
- public function update(StepInterface $data)
- {
- return array('csrf_secret' => $data->csrf_secret);
- }
- /**
- * @see StepInterface
- */
- public function getTemplate()
- {
- return 'SymfonyWebConfiguratorBundle:Step:csrf.html.twig';
- }
- }
|