12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /*
- * This file is part of the FOSUserBundle package.
- *
- * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace FOS\UserBundle\DependencyInjection\Compiler;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
- use Symfony\Component\Config\Resource\FileResource;
- /**
- * Registers the additional validators according to the storage
- *
- * @author Christophe Coevoet <stof@notk.org>
- */
- class ValidationPass implements CompilerPassInterface
- {
- /**
- * {@inheritDoc}
- */
- public function process(ContainerBuilder $container)
- {
- if (!$container->hasParameter('fos_user.storage')) {
- return;
- }
- $storage = $container->getParameter('fos_user.storage');
- if ('custom' === $storage) {
- return;
- }
- $validationFile = __DIR__ . '/../../Resources/config/storage-validation/' . $storage . '.xml';
- if ($container->hasDefinition('validator.builder')) {
- // Symfony 2.5+
- $container->getDefinition('validator.builder')
- ->addMethodCall('addXmlMapping', array($validationFile));
- return;
- }
- // Old method of loading validation
- if (!$container->hasParameter('validator.mapping.loader.xml_files_loader.mapping_files')) {
- return;
- }
- $files = $container->getParameter('validator.mapping.loader.xml_files_loader.mapping_files');
- if (is_file($validationFile)) {
- $files[] = realpath($validationFile);
- $container->addResource(new FileResource($validationFile));
- }
- $container->setParameter('validator.mapping.loader.xml_files_loader.mapping_files', $files);
- }
- }
|