mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-16 18:53:26 +02:00
* some changes
* moved some admin html code from php to twig templates (.html files) * minimum PHP version required by installer is now 5.1.2, cause of spl_autoload_register functon. * depracated Twig to version 1.20.0 cause of Autoloader * removed unused admin stylish template
This commit is contained in:
@@ -1,11 +1,90 @@
|
||||
<?php
|
||||
|
||||
namespace Twig;
|
||||
/*
|
||||
* This file is part of Twig.
|
||||
*
|
||||
* (c) 2009 Fabien Potencier
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
class_exists('Twig_NodeTraverser');
|
||||
/**
|
||||
* Twig_NodeTraverser is a node traverser.
|
||||
*
|
||||
* It visits all nodes and their children and calls the given visitor for each.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*/
|
||||
class Twig_NodeTraverser
|
||||
{
|
||||
protected $env;
|
||||
protected $visitors;
|
||||
|
||||
if (\false) {
|
||||
class NodeTraverser extends \Twig_NodeTraverser
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param Twig_Environment $env A Twig_Environment instance
|
||||
* @param Twig_NodeVisitorInterface[] $visitors An array of Twig_NodeVisitorInterface instances
|
||||
*/
|
||||
public function __construct(Twig_Environment $env, array $visitors = array())
|
||||
{
|
||||
$this->env = $env;
|
||||
$this->visitors = array();
|
||||
foreach ($visitors as $visitor) {
|
||||
$this->addVisitor($visitor);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a visitor.
|
||||
*
|
||||
* @param Twig_NodeVisitorInterface $visitor A Twig_NodeVisitorInterface instance
|
||||
*/
|
||||
public function addVisitor(Twig_NodeVisitorInterface $visitor)
|
||||
{
|
||||
if (!isset($this->visitors[$visitor->getPriority()])) {
|
||||
$this->visitors[$visitor->getPriority()] = array();
|
||||
}
|
||||
|
||||
$this->visitors[$visitor->getPriority()][] = $visitor;
|
||||
}
|
||||
|
||||
/**
|
||||
* Traverses a node and calls the registered visitors.
|
||||
*
|
||||
* @param Twig_NodeInterface $node A Twig_NodeInterface instance
|
||||
*
|
||||
* @return Twig_NodeInterface
|
||||
*/
|
||||
public function traverse(Twig_NodeInterface $node)
|
||||
{
|
||||
ksort($this->visitors);
|
||||
foreach ($this->visitors as $visitors) {
|
||||
foreach ($visitors as $visitor) {
|
||||
$node = $this->traverseForVisitor($visitor, $node);
|
||||
}
|
||||
}
|
||||
|
||||
return $node;
|
||||
}
|
||||
|
||||
protected function traverseForVisitor(Twig_NodeVisitorInterface $visitor, Twig_NodeInterface $node = null)
|
||||
{
|
||||
if (null === $node) {
|
||||
return;
|
||||
}
|
||||
|
||||
$node = $visitor->enterNode($node, $this->env);
|
||||
|
||||
foreach ($node as $k => $n) {
|
||||
if (false !== $n = $this->traverseForVisitor($visitor, $n)) {
|
||||
$node->setNode($k, $n);
|
||||
} else {
|
||||
$node->removeNode($k);
|
||||
}
|
||||
}
|
||||
|
||||
return $visitor->leaveNode($node, $this->env);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user