leftypol/inc/lib/Twig/NodeVisitorInterface.php

48 lines
1.3 KiB
PHP
Raw Normal View History

2011-10-05 04:22:53 +00:00
<?php
/*
* 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.
*/
/**
* Twig_NodeVisitorInterface is the interface the all node visitor classes must implement.
*
2013-08-01 19:20:12 +00:00
* @author Fabien Potencier <fabien@symfony.com>
2011-10-05 04:22:53 +00:00
*/
interface Twig_NodeVisitorInterface
{
/**
* Called before child nodes are visited.
*
* @param Twig_NodeInterface $node The node to visit
* @param Twig_Environment $env The Twig environment instance
*
2013-08-01 19:20:12 +00:00
* @return Twig_NodeInterface The modified node
2011-10-05 04:22:53 +00:00
*/
2013-08-01 19:20:12 +00:00
public function enterNode(Twig_NodeInterface $node, Twig_Environment $env);
2011-10-05 04:22:53 +00:00
/**
* Called after child nodes are visited.
*
* @param Twig_NodeInterface $node The node to visit
* @param Twig_Environment $env The Twig environment instance
*
2013-08-01 19:20:12 +00:00
* @return Twig_NodeInterface|false The modified node or false if the node must be removed
2011-10-05 04:22:53 +00:00
*/
2013-08-01 19:20:12 +00:00
public function leaveNode(Twig_NodeInterface $node, Twig_Environment $env);
2011-10-05 04:22:53 +00:00
/**
* Returns the priority for this visitor.
*
* Priority should be between -10 and 10 (0 is the default).
*
* @return integer The priority level
*/
2013-08-01 19:20:12 +00:00
public function getPriority();
2011-10-05 04:22:53 +00:00
}