1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-20 07:30:16 +01:00

[ticket/15765] Add debug.url_generator

PHPBB3-15765
This commit is contained in:
Rubén Calvo 2018-09-01 01:39:55 +02:00 committed by Marc Alexander
parent 59e5f17cd6
commit 6b337e0882
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995
3 changed files with 3 additions and 1 deletions
phpBB
config/development
phpbb

@ -11,6 +11,7 @@ core:
sql_explain: true
memory: true
show_errors: true
url_generator: true
twig:
debug: true

@ -40,6 +40,7 @@ class container_configuration implements ConfigurationInterface
->booleanNode('sql_explain')->defaultValue(false)->end()
->booleanNode('memory')->defaultValue(false)->end()
->booleanNode('show_errors')->defaultValue(false)->end()
->booleanNode('url_generator')->defaultValue(false)->end()
->end()
->end()
->arrayNode('twig')

@ -255,7 +255,7 @@ class router implements RouterInterface
{
try
{
$cache = new ConfigCache("{$this->cache_dir}url_generator.{$this->php_ext}", defined('DEBUG'));
$cache = new ConfigCache("{$this->cache_dir}url_generator.{$this->php_ext}", $this->container->getParameter('debug.url_generator'));
if (!$cache->isFresh())
{
$dumper = new PhpGeneratorDumper($this->get_routes());