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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
Null.php
01 <?php
02
03 /*
04 * This file is part of Twig.
05 *
06 * (c) 2015 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 * Implements a no-cache strategy.
14 *
15 * @author Fabien Potencier <fabien@symfony.com>
16 */
17 class Twig_Cache_Null implements Twig_CacheInterface
18 {
19 /**
20 * {@inheritdoc}
21 */
22 public function generateKey($name, $className)
23 {
24 return '';
25 }
26
27 /**
28 * {@inheritdoc}
29 */
30 public function write($key, $content)
31 {
32 }
33
34 /**
35 * {@inheritdoc}
36 */
37 public function load($key)
38 {
39 }
40
41 /**
42 * {@inheritdoc}
43 */
44 public function getTimestamp($key)
45 {
46 return 0;
47 }
48 }
49