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

FunctionInterface.php

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


01  <?php
02   
03  /*
04   * This file is part of Twig.
05   *
06   * (c) 2010 Fabien Potencier
07   * (c) 2010 Arnaud Le Blanc
08   *
09   * For the full copyright and license information, please view the LICENSE
10   * file that was distributed with this source code.
11   */
12   
13  /**
14   * Represents a template function.
15   *
16   * Use Twig_SimpleFunction instead.
17   *
18   * @author Arnaud Le Blanc <arnaud.lb@gmail.com>
19   *
20   * @deprecated since 1.12 (to be removed in 2.0)
21   */
22  interface Twig_FunctionInterface
23  {
24      /**
25       * Compiles a function.
26       *
27       * @return string The PHP code for the function
28       */
29      public function compile();
30   
31      public function needsEnvironment();
32   
33      public function needsContext();
34   
35      public function getSafe(Twig_Node $filterArgs);
36   
37      public function setArguments($arguments);
38   
39      public function getArguments();
40  }
41