public TwigTransTokenParser::decideForFork($token)
Detect a 'plural' switch or the end of a 'trans' tag.
File
- core/lib/Drupal/Core/Template/TwigTransTokenParser.php, line 58
Class
- TwigTransTokenParser
- A class that defines the Twig 'trans' token parser for Drupal.
Namespace
Drupal\Core\Template
Code
public function decideForFork($token) { return $token->test(array('plural', 'endtrans')); }
Please login to continue.