<?php 
							 
						 
					
						
							
								
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								/*
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 * Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 * GPLv3 General License.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 * https://exacti.com.br
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 */
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								define('TWIGtagIni', 't');
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								define('TWIGtagClose', 'endt');
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								//use Phacil\Framework;
 
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								class transTokenParser extends \Twig\TokenParser\AbstractTokenParser
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								{
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								   public function parse(\Twig\Token $token)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $lineno = $token->getLine();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $stream = $this->parser->getStream();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      // recovers all inline parameters close to your tag name
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $params = array_merge(array (), $this->getInlineParams($token));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $continue = true;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      while ($continue)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // create subtree until the decidetransFork() callback returns true
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         $body = $this->parser->subparse(array ($this, 'decidetransFork'));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // I like to put a switch here, in case you need to add middle tags, such
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // as: {% trans %}, {% nexttrans %}, {% endtrans %}.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         $tag = $stream->next()->getValue();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         switch ($tag)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								            case TWIGtagClose:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               $continue = false;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               break;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								            default:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               throw new \Twig_Error_Syntax(sprintf('Unexpected end of template. Twig was looking for the following tags '.TWIGtagClose.' to close the '.TWIGtagIni.' block started at line %d)', $lineno), -1);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // you want $body at the beginning of your arguments
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         array_unshift($params, $body);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // if your endtrans can also contains params, you can uncomment this line:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // $params = array_merge($params, $this->getInlineParams($token));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // and comment this one:
 
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								         $stream->expect(\Twig\Token::BLOCK_END_TYPE);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      return new transNode(new \Twig\Node\Node($params), $lineno, $this->getTag());
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   /**
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * Recovers all tag parameters until we find a BLOCK_END_TYPE ( %} )
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * @param \Twig_Token $token
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * @return array
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    */
 
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								   protected function getInlineParams(\Twig\Token $token)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $stream = $this->parser->getStream();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $params = array ();
 
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      while (!$stream->test(\Twig\Token::BLOCK_END_TYPE))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         $params[] = $this->parser->getExpressionParser()->parseExpression();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      }
 
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      $stream->expect(\Twig\Token::BLOCK_END_TYPE);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      return $params;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   /**
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * Callback called at each tag name when subparsing, must return
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * true when the expected end tag is reached.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *
 
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    * @param \Twig\Token $token
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * @return bool
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    */
 
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								   public function decidetransFork(\Twig\Token $token)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      return $token->test(array (TWIGtagClose));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   /**
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * Your tag name: if the parsed tag match the one you put here, your parse()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * method will be called.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    * @return string
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    */
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   public function getTag()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      return TWIGtagIni;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								}
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								class transNode extends \Twig\Node\Node
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								{
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   public function __construct($params, $lineno = 0, $tag = null)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      parent::__construct(array ('params' => $params), array (), $lineno, $tag);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								   public function compile(\Twig\Compiler $compiler)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $count = count($this->getNode('params'));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $compiler
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         ->addDebugInfo($this);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      for ($i = 0; ($i <  $count); $i++)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // argument is not an expression (such as, a \Twig_Node_Textbody)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // we should trick with output buffering to get a valid argument to pass
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         // to the functionToCall() function.
 
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								         if (!($this->getNode('params')->getNode($i) instanceof \Twig\Node\Expression\AbstractExpression))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								            $compiler
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->write('ob_start();')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->raw(PHP_EOL);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								            $compiler
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->subcompile($this->getNode('params')->getNode($i));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								            $compiler
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->write('$_trans[] = ob_get_clean();')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->raw(PHP_EOL);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         else
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								            $compiler
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->write('$_trans[] = ')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->subcompile($this->getNode('params')->getNode($i))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->raw(';')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								               ->raw(PHP_EOL);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $compiler
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         ->write('call_user_func_array(')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         ->string('traduzir')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         ->raw(', $_trans);')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         ->raw(PHP_EOL);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      $compiler
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         ->write('unset($_trans);')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         ->raw(PHP_EOL);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								}
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
											
												PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
											 
										 
										
											6 years ago 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								class transExtension extends \Twig\Extension\AbstractExtension
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								{
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   public function getTokenParsers()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      return array (
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								              new transTokenParser(),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      );
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   public function getName()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      return TWIGtagIni;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								   }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								}
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								function traduzir() {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
									$params = func_get_args();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
									$body = array_shift($params);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
									
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
									if (class_exists('Translate')) {
 
							 
						 
					
						
							
								
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
										$trans = new Phacil\Framework\Translate();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
										echo ($trans->translation($body)); 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
									} else {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
										echo $body;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
									}
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
									
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								}