Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.40
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
friendsofsymfony /
user-bundle /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Controller
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
DependencyInjection
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Doctrine
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Event
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
EventListener
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Form
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Mailer
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Model
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Resources
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Security
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Util
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Validator
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
CompatibilityUtil.php
1.18
KB
-rw-rw-r--
2022-04-28 07:54
FOSUserBundle.php
2.87
KB
-rw-rw-r--
2022-04-28 07:54
FOSUserEvents.php
9.59
KB
-rw-rw-r--
2022-04-28 07:54
LICENSE
1.04
KB
-rw-rw-r--
2022-04-28 07:54
composer.json
2.41
KB
-rw-rw-r--
2022-04-28 07:54
Save
Rename
<?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; use Doctrine\Bundle\CouchDBBundle\DependencyInjection\Compiler\DoctrineCouchDBMappingsPass; use Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass; use Doctrine\Bundle\MongoDBBundle\DependencyInjection\Compiler\DoctrineMongoDBMappingsPass; use FOS\UserBundle\DependencyInjection\Compiler\CheckForSessionPass; use FOS\UserBundle\DependencyInjection\Compiler\CheckForSwiftMailerPass; use FOS\UserBundle\DependencyInjection\Compiler\ConfigurePasswordHasherPass; use FOS\UserBundle\DependencyInjection\Compiler\InjectRememberMeServicesPass; use FOS\UserBundle\DependencyInjection\Compiler\InjectUserCheckerPass; use FOS\UserBundle\DependencyInjection\Compiler\ValidationPass; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Bundle\Bundle; /** * @author Matthieu Bontemps <matthieu@knplabs.com> * @author Thibault Duplessis <thibault.duplessis@gmail.com> * * @final */ class FOSUserBundle extends Bundle { public function build(ContainerBuilder $container) { parent::build($container); $container->addCompilerPass(new ConfigurePasswordHasherPass()); $container->addCompilerPass(new ValidationPass()); $container->addCompilerPass(new InjectUserCheckerPass()); $container->addCompilerPass(new InjectRememberMeServicesPass()); $container->addCompilerPass(new CheckForSessionPass()); $container->addCompilerPass(new CheckForSwiftMailerPass()); $this->addRegisterMappingsPass($container); } private function addRegisterMappingsPass(ContainerBuilder $container) { $mappings = [ realpath(__DIR__.'/Resources/config/doctrine-mapping') => 'FOS\UserBundle\Model', ]; if (class_exists('Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass')) { $container->addCompilerPass(DoctrineOrmMappingsPass::createXmlMappingDriver($mappings, ['fos_user.model_manager_name'], 'fos_user.backend_type_orm')); } if (class_exists('Doctrine\Bundle\MongoDBBundle\DependencyInjection\Compiler\DoctrineMongoDBMappingsPass')) { $container->addCompilerPass(DoctrineMongoDBMappingsPass::createXmlMappingDriver($mappings, ['fos_user.model_manager_name'], 'fos_user.backend_type_mongodb')); } if (class_exists('Doctrine\Bundle\CouchDBBundle\DependencyInjection\Compiler\DoctrineCouchDBMappingsPass')) { $container->addCompilerPass(DoctrineCouchDBMappingsPass::createXmlMappingDriver($mappings, ['fos_user.model_manager_name'], 'fos_user.backend_type_couchdb')); } } }