login consent app sql
This commit is contained in:
83
vendor/symfony/web-profiler-bundle/Resources/config/profiler.php
vendored
Normal file
83
vendor/symfony/web-profiler-bundle/Resources/config/profiler.php
vendored
Normal file
@@ -0,0 +1,83 @@
|
||||
<?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\DependencyInjection\Loader\Configurator;
|
||||
|
||||
use Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController;
|
||||
use Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController;
|
||||
use Symfony\Bundle\WebProfilerBundle\Controller\RouterController;
|
||||
use Symfony\Bundle\WebProfilerBundle\Csp\ContentSecurityPolicyHandler;
|
||||
use Symfony\Bundle\WebProfilerBundle\Csp\NonceGenerator;
|
||||
use Symfony\Bundle\WebProfilerBundle\Twig\WebProfilerExtension;
|
||||
use Symfony\Component\HttpKernel\Debug\FileLinkFormatter;
|
||||
use Symfony\Component\VarDumper\Dumper\HtmlDumper;
|
||||
|
||||
return static function (ContainerConfigurator $container) {
|
||||
$container->services()
|
||||
|
||||
->set('web_profiler.controller.profiler', ProfilerController::class)
|
||||
->public()
|
||||
->args([
|
||||
service('router')->nullOnInvalid(),
|
||||
service('profiler')->nullOnInvalid(),
|
||||
service('twig'),
|
||||
param('data_collector.templates'),
|
||||
service('web_profiler.csp.handler'),
|
||||
param('kernel.project_dir'),
|
||||
])
|
||||
|
||||
->set('web_profiler.controller.router', RouterController::class)
|
||||
->public()
|
||||
->args([
|
||||
service('profiler')->nullOnInvalid(),
|
||||
service('twig'),
|
||||
service('router')->nullOnInvalid(),
|
||||
null,
|
||||
tagged_iterator('routing.expression_language_provider'),
|
||||
])
|
||||
|
||||
->set('web_profiler.controller.exception_panel', ExceptionPanelController::class)
|
||||
->public()
|
||||
->args([
|
||||
service('error_handler.error_renderer.html'),
|
||||
service('profiler')->nullOnInvalid(),
|
||||
])
|
||||
|
||||
->set('web_profiler.csp.handler', ContentSecurityPolicyHandler::class)
|
||||
->args([
|
||||
inline_service(NonceGenerator::class),
|
||||
])
|
||||
|
||||
->set('twig.extension.webprofiler', WebProfilerExtension::class)
|
||||
->args([
|
||||
inline_service(HtmlDumper::class)
|
||||
->args([null, param('kernel.charset'), HtmlDumper::DUMP_LIGHT_ARRAY])
|
||||
->call('setDisplayOptions', [['maxStringLength' => 4096, 'fileLinkFormat' => service('debug.file_link_formatter')]]),
|
||||
])
|
||||
->tag('twig.extension')
|
||||
|
||||
->set('debug.file_link_formatter', FileLinkFormatter::class)
|
||||
->args([
|
||||
param('debug.file_link_format'),
|
||||
service('request_stack')->ignoreOnInvalid(),
|
||||
param('kernel.project_dir'),
|
||||
'/_profiler/open?file=%%f&line=%%l#line%%l',
|
||||
])
|
||||
|
||||
->set('debug.file_link_formatter.url_format', 'string')
|
||||
->factory([FileLinkFormatter::class, 'generateUrlFormat'])
|
||||
->args([
|
||||
service('router'),
|
||||
'_profiler_open_file',
|
||||
'?file=%%f&line=%%l#line%%l',
|
||||
])
|
||||
;
|
||||
};
|
47
vendor/symfony/web-profiler-bundle/Resources/config/routing/profiler.xml
vendored
Normal file
47
vendor/symfony/web-profiler-bundle/Resources/config/routing/profiler.xml
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing https://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
|
||||
<route id="_profiler_home" path="/">
|
||||
<default key="_controller">web_profiler.controller.profiler::homeAction</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler_search" path="/search">
|
||||
<default key="_controller">web_profiler.controller.profiler::searchAction</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler_search_bar" path="/search_bar">
|
||||
<default key="_controller">web_profiler.controller.profiler::searchBarAction</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler_phpinfo" path="/phpinfo">
|
||||
<default key="_controller">web_profiler.controller.profiler::phpinfoAction</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler_search_results" path="/{token}/search/results">
|
||||
<default key="_controller">web_profiler.controller.profiler::searchResultsAction</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler_open_file" path="/open">
|
||||
<default key="_controller">web_profiler.controller.profiler::openAction</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler" path="/{token}">
|
||||
<default key="_controller">web_profiler.controller.profiler::panelAction</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler_router" path="/{token}/router">
|
||||
<default key="_controller">web_profiler.controller.router::panelAction</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler_exception" path="/{token}/exception">
|
||||
<default key="_controller">web_profiler.controller.exception_panel::body</default>
|
||||
</route>
|
||||
|
||||
<route id="_profiler_exception_css" path="/{token}/exception.css">
|
||||
<default key="_controller">web_profiler.controller.exception_panel::stylesheet</default>
|
||||
</route>
|
||||
|
||||
</routes>
|
10
vendor/symfony/web-profiler-bundle/Resources/config/routing/wdt.xml
vendored
Normal file
10
vendor/symfony/web-profiler-bundle/Resources/config/routing/wdt.xml
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing https://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
|
||||
<route id="_wdt" path="/{token}">
|
||||
<default key="_controller">web_profiler.controller.profiler::toolbarAction</default>
|
||||
</route>
|
||||
</routes>
|
14
vendor/symfony/web-profiler-bundle/Resources/config/schema/webprofiler-1.0.xsd
vendored
Normal file
14
vendor/symfony/web-profiler-bundle/Resources/config/schema/webprofiler-1.0.xsd
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<xsd:schema xmlns="http://symfony.com/schema/dic/webprofiler"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://symfony.com/schema/dic/webprofiler"
|
||||
elementFormDefault="qualified">
|
||||
|
||||
<xsd:element name="config" type="config" />
|
||||
|
||||
<xsd:complexType name="config">
|
||||
<xsd:attribute name="toolbar" type="xsd:boolean" />
|
||||
<xsd:attribute name="intercept-redirects" type="xsd:boolean" />
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
31
vendor/symfony/web-profiler-bundle/Resources/config/toolbar.php
vendored
Normal file
31
vendor/symfony/web-profiler-bundle/Resources/config/toolbar.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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\DependencyInjection\Loader\Configurator;
|
||||
|
||||
use Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener;
|
||||
|
||||
return static function (ContainerConfigurator $container) {
|
||||
$container->services()
|
||||
|
||||
->set('web_profiler.debug_toolbar', WebDebugToolbarListener::class)
|
||||
->args([
|
||||
service('twig'),
|
||||
param('web_profiler.debug_toolbar.intercept_redirects'),
|
||||
param('web_profiler.debug_toolbar.mode'),
|
||||
service('router')->ignoreOnInvalid(),
|
||||
abstract_arg('paths that should be excluded from the AJAX requests shown in the toolbar'),
|
||||
service('web_profiler.csp.handler'),
|
||||
service('data_collector.dump')->ignoreOnInvalid(),
|
||||
])
|
||||
->tag('kernel.event_subscriber')
|
||||
;
|
||||
};
|
Reference in New Issue
Block a user