Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

From.php

Zuletzt modifiziert: 09.10.2024, 12:58 - Dateigröße: 1.81 KiB


01  <?php
02   
03  /*
04   * This file is part of Twig.
05   *
06   * (c) 2010 Fabien Potencier
07   *
08   * For the full copyright and license information, please view the LICENSE
09   * file that was distributed with this source code.
10   */
11   
12  /**
13   * Imports macros.
14   *
15   * <pre>
16   *   {% from 'forms.html' import forms %}
17   * </pre>
18   */
19  class Twig_TokenParser_From extends Twig_TokenParser
20  {
21      /**
22       * Parses a token and returns a node.
23       *
24       * @param Twig_Token $token A Twig_Token instance
25       *
26       * @return Twig_NodeInterface A Twig_NodeInterface instance
27       */
28      public function parse(Twig_Token $token)
29      {
30          $macro = $this->parser->getExpressionParser()->parseExpression();
31          $stream = $this->parser->getStream();
32          $stream->expect('import');
33   
34          $targets = array();
35          do {
36              $name = $stream->expect(Twig_Token::NAME_TYPE)->getValue();
37   
38              $alias = $name;
39              if ($stream->test('as')) {
40                  $stream->next();
41   
42                  $alias = $stream->expect(Twig_Token::NAME_TYPE)->getValue();
43              }
44   
45              $targets[$name] = $alias;
46   
47              if (!$stream->test(Twig_Token::PUNCTUATION_TYPE, ',')) {
48                  break;
49              }
50   
51              $stream->next();
52          } while (true);
53   
54          $stream->expect(Twig_Token::BLOCK_END_TYPE);
55   
56          $node = new Twig_Node_Import($macro, new Twig_Node_Expression_AssignName($this->parser->getVarName(), $token->getLine()), $token->getLine(), $this->getTag());
57   
58          foreach ($targets as $name => $alias) {
59              $this->parser->addImportedSymbol('function', $alias, 'get'.$name, $node->getNode('var'));
60          }
61   
62          return $node;
63      }
64   
65      /**
66       * Gets the tag name associated with this token parser.
67       *
68       * @return string The tag name
69       */
70      public function getTag()
71      {
72          return 'from';
73      }
74  }
75