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

Loader.php

Zuletzt modifiziert: 09.10.2024, 12:58 - Dateigröße: 946.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   * Exception thrown when an error occurs during template loading.
14   *
15   * Automatic template information guessing is always turned off as
16   * if a template cannot be loaded, there is nothing to guess.
17   * However, when a template is loaded from another one, then, we need
18   * to find the current context and this is automatically done by
19   * Twig_Template::displayWithErrorHandling().
20   *
21   * This strategy makes Twig_Environment::resolveTemplate() much faster.
22   *
23   * @author Fabien Potencier <fabien@symfony.com>
24   */
25  class Twig_Error_Loader extends Twig_Error
26  {
27      public function __construct($message, $lineno = -1, $filename = null, Exception $previous = null)
28      {
29          parent::__construct($message, false, false, $previous);
30      }
31  }
32