This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/TwigBundle/Node/TransNode.php

95 lines
2.5 KiB
PHP
Raw Normal View History

<?php
namespace Symfony\Bundle\TwigBundle\Node;
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class TransNode extends \Twig_Node
{
public function __construct(\Twig_NodeInterface $body, \Twig_NodeInterface $domain, \Twig_Node_Expression $count = null, $lineno, $tag = null)
{
parent::__construct(array('count' => $count, 'body' => $body, 'domain' => $domain), array(), $lineno, $tag);
}
/**
* Compiles the node to PHP.
*
* @param \Twig_Compiler A Twig_Compiler instance
*/
public function compile($compiler)
{
$compiler->addDebugInfo($this);
list($msg, $vars) = $this->compileString($this->body);
$method = null === $this->count ? 'trans' : 'transChoice';
$compiler
->write('echo $context[\'_view\'][\'translator\']->'.$method.'(')
->subcompile($msg)
;
$compiler->raw(', ');
if (null !== $this->count) {
$compiler
->subcompile($this->count)
->raw(', ')
;
}
$compiler->raw('array(');
foreach ($vars as $var) {
$compiler
->string('{{ '.$var['name'].' }}')
->raw(' => ')
->subcompile($var)
->raw(', ')
;
}
$compiler
->raw("), ")
->subcompile($this->domain)
->raw(");\n")
;
}
protected function compileString(\Twig_NodeInterface $body)
{
if ($body instanceof \Twig_Node_Expression_Name || $body instanceof \Twig_Node_Expression_Constant) {
return array($body, array());
}
$msg = '';
$vars = array();
foreach ($body as $node) {
if ($node instanceof \Twig_Node_Print) {
$n = $node->expr;
while ($n instanceof \Twig_Node_Expression_Filter) {
$n = $n->node;
}
$msg .= sprintf('{{ %s }}', $n['name']);
$vars[] = new \Twig_Node_Expression_Name($n['name'], $n->getLine());
} else {
$msg .= $node['data'];
}
}
return array(new \Twig_Node(array(new \Twig_Node_Expression_Constant(trim($msg), $node->getLine()))), $vars);
}
}