class Twig_TokenParser_From

Imports macros.

<pre> {% from 'forms.html' import forms %} </pre>

Hierarchy

Expanded class hierarchy of Twig_TokenParser_From

File

drupal/core/vendor/twig/twig/lib/Twig/TokenParser/From.php, line 19

View source
class Twig_TokenParser_From extends Twig_TokenParser {

  /**
   * Parses a token and returns a node.
   *
   * @param Twig_Token $token A Twig_Token instance
   *
   * @return Twig_NodeInterface A Twig_NodeInterface instance
   */
  public function parse(Twig_Token $token) {
    $macro = $this->parser
      ->getExpressionParser()
      ->parseExpression();
    $stream = $this->parser
      ->getStream();
    $stream
      ->expect('import');
    $targets = array();
    do {
      $name = $stream
        ->expect(Twig_Token::NAME_TYPE)
        ->getValue();
      $alias = $name;
      if ($stream
        ->test('as')) {
        $stream
          ->next();
        $alias = $stream
          ->expect(Twig_Token::NAME_TYPE)
          ->getValue();
      }
      $targets[$name] = $alias;
      if (!$stream
        ->test(Twig_Token::PUNCTUATION_TYPE, ',')) {
        break;
      }
      $stream
        ->next();
    } while (true);
    $stream
      ->expect(Twig_Token::BLOCK_END_TYPE);
    $node = new Twig_Node_Import($macro, new Twig_Node_Expression_AssignName($this->parser
      ->getVarName(), $token
      ->getLine()), $token
      ->getLine(), $this
      ->getTag());
    foreach ($targets as $name => $alias) {
      $this->parser
        ->addImportedFunction($alias, 'get' . $name, $node
        ->getNode('var'));
    }
    return $node;
  }

  /**
   * Gets the tag name associated with this token parser.
   *
   * @return string The tag name
   */
  public function getTag() {
    return 'from';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Twig_TokenParser::$parser protected property
Twig_TokenParser::setParser public function Sets the parser associated with this token parser Overrides Twig_TokenParserInterface::setParser
Twig_TokenParser_From::getTag public function Gets the tag name associated with this token parser. Overrides Twig_TokenParserInterface::getTag
Twig_TokenParser_From::parse public function Parses a token and returns a node. Overrides Twig_TokenParserInterface::parse