: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* This file is part of Twig.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
namespace WPML\Core\Twig\TokenParser;
use WPML\Core\Twig\Error\SyntaxError;
use WPML\Core\Twig\Node\IfNode;
use WPML\Core\Twig\Node\Node;
use WPML\Core\Twig\Token;
* {% for user in users %}
* <li>{{ user.username|e }}</li>
class IfTokenParser extends \WPML\Core\Twig\TokenParser\AbstractTokenParser
public function parse(\WPML\Core\Twig\Token $token)
$lineno = $token->getLine();
$expr = $this->parser->getExpressionParser()->parseExpression();
$stream = $this->parser->getStream();
$stream->expect(\WPML\Core\Twig\Token::BLOCK_END_TYPE);
$body = $this->parser->subparse([$this, 'decideIfFork']);
switch ($stream->next()->getValue()) {
$stream->expect(\WPML\Core\Twig\Token::BLOCK_END_TYPE);
$else = $this->parser->subparse([$this, 'decideIfEnd']);
$expr = $this->parser->getExpressionParser()->parseExpression();
$stream->expect(\WPML\Core\Twig\Token::BLOCK_END_TYPE);
$body = $this->parser->subparse([$this, 'decideIfFork']);
throw new \WPML\Core\Twig\Error\SyntaxError(\sprintf('Unexpected end of template. Twig was looking for the following tags "else", "elseif", or "endif" to close the "if" block started at line %d).', $lineno), $stream->getCurrent()->getLine(), $stream->getSourceContext());
$stream->expect(\WPML\Core\Twig\Token::BLOCK_END_TYPE);
return new \WPML\Core\Twig\Node\IfNode(new \WPML\Core\Twig\Node\Node($tests), $else, $lineno, $this->getTag());
public function decideIfFork(\WPML\Core\Twig\Token $token)
return $token->test(['elseif', 'else', 'endif']);
public function decideIfEnd(\WPML\Core\Twig\Token $token)
return $token->test(['endif']);
\class_alias('WPML\\Core\\Twig\\TokenParser\\IfTokenParser', 'WPML\\Core\\Twig_TokenParser_If');