Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

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

TokenParserInterface.php

Zuletzt modifiziert: 09.10.2024, 12:57 - Dateigröße: 966.00 Bytes


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   * Interface implemented by token parsers.
14   *
15   * @author Fabien Potencier <fabien@symfony.com>
16   */
17  interface Twig_TokenParserInterface
18  {
19      /**
20       * Sets the parser associated with this token parser.
21       *
22       * @param Twig_Parser $parser A Twig_Parser instance
23       */
24      public function setParser(Twig_Parser $parser);
25   
26      /**
27       * Parses a token and returns a node.
28       *
29       * @param Twig_Token $token A Twig_Token instance
30       *
31       * @return Twig_NodeInterface A Twig_NodeInterface instance
32       *
33       * @throws Twig_Error_Syntax
34       */
35      public function parse(Twig_Token $token);
36   
37      /**
38       * Gets the tag name associated with this token parser.
39       *
40       * @return string The tag name
41       */
42      public function getTag();
43  }
44