mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-27 12:29:38 +00:00
[ticket/15214] Move if statement to a better place
Putting this here will have the loop run the same amount of times as default. Without this, the loop runs too many extra times. PHPBB3-15214
This commit is contained in:
parent
1e2532a9a9
commit
648cd688ca
1 changed files with 26 additions and 26 deletions
|
@ -50,18 +50,19 @@ class event extends \Twig\Node\Node
|
||||||
|
|
||||||
// Group and sort extension template events in according to their priority (0 by default if not set)
|
// Group and sort extension template events in according to their priority (0 by default if not set)
|
||||||
foreach ($this->environment->get_phpbb_extensions() as $ext_namespace => $ext_path)
|
foreach ($this->environment->get_phpbb_extensions() as $ext_namespace => $ext_path)
|
||||||
|
{
|
||||||
|
if ($this->environment->isDebug() || $this->environment->getLoader()->exists('@' . $ext_namespace . '/' . $location . '.html'))
|
||||||
{
|
{
|
||||||
$ext_namespace = str_replace('/', '_', $ext_namespace);
|
$ext_namespace = str_replace('/', '_', $ext_namespace);
|
||||||
$priority_key = $this->template_event_priority_array[$ext_namespace][$location] ?? 0;
|
$priority_key = $this->template_event_priority_array[$ext_namespace][$location] ?? 0;
|
||||||
$template_events[$priority_key][] = $ext_namespace;
|
$template_events[$priority_key][] = $ext_namespace;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
krsort($template_events);
|
krsort($template_events);
|
||||||
|
|
||||||
foreach ($template_events as $events)
|
foreach ($template_events as $events)
|
||||||
{
|
{
|
||||||
foreach ($events as $ext_namespace)
|
foreach ($events as $ext_namespace)
|
||||||
{
|
|
||||||
if ($this->environment->isDebug() || $this->environment->getLoader()->exists('@' . $ext_namespace . '/' . $location . '.html'))
|
|
||||||
{
|
{
|
||||||
if ($this->environment->isDebug())
|
if ($this->environment->isDebug())
|
||||||
{
|
{
|
||||||
|
@ -92,4 +93,3 @@ class event extends \Twig\Node\Node
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue