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

String.php

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


01  <?php
02   
03  /*
04   * This file is part of Twig.
05   *
06   * (c) 2009 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   * Loads a template from a string.
14   *
15   * This loader should only be used for unit testing as it has many limitations
16   * (for instance, the include or extends tag does not make any sense for a string
17   * loader).
18   *
19   * When using this loader with a cache mechanism, you should know that a new cache
20   * key is generated each time a template content "changes" (the cache key being the
21   * source code of the template). If you don't want to see your cache grows out of
22   * control, you need to take care of clearing the old cache file by yourself.
23   *
24   * @author Fabien Potencier <fabien@symfony.com>
25   */
26  class Twig_Loader_String implements Twig_LoaderInterface, Twig_ExistsLoaderInterface
27  {
28      /**
29       * {@inheritdoc}
30       */
31      public function getSource($name)
32      {
33          return $name;
34      }
35   
36      /**
37       * {@inheritdoc}
38       */
39      public function exists($name)
40      {
41          return true;
42      }
43   
44      /**
45       * {@inheritdoc}
46       */
47      public function getCacheKey($name)
48      {
49          return $name;
50      }
51   
52      /**
53       * {@inheritdoc}
54       */
55      public function isFresh($name, $time)
56      {
57          return true;
58      }
59  }
60