Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

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

InitRuntimeInterface.php

Zuletzt modifiziert: 02.04.2025, 15:03 - Dateigröße: 933.00 Bytes


01  <?php
02   
03  /*
04   * This file is part of Twig.
05   *
06   * (c) 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  namespace Twig\Extension;
13   
14  use Twig\Environment;
15   
16  /**
17   * Enables usage of the deprecated Twig\Extension\AbstractExtension::initRuntime() method.
18   *
19   * Explicitly implement this interface if you really need to implement the
20   * deprecated initRuntime() method in your extensions.
21   *
22   * @author Fabien Potencier <fabien@symfony.com>
23   *
24   * @deprecated since Twig 2.7, to be removed in 3.0
25   */
26  interface InitRuntimeInterface
27  {
28      /**
29       * Initializes the runtime environment.
30       *
31       * This is where you can load some file that contains filter functions for instance.
32       */
33      public function initRuntime(Environment $environment);
34  }
35   
36  class_alias('Twig\Extension\InitRuntimeInterface', 'Twig_Extension_InitRuntimeInterface');
37