‪TYPO3CMS  9.5
FluidTemplateCache.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
19 use TYPO3Fluid\Fluid\Core\Cache\FluidCacheInterface;
20 use TYPO3Fluid\Fluid\Core\Cache\FluidCacheWarmerInterface;
21 use TYPO3Fluid\Fluid\Core\Cache\StandardCacheWarmer;
22 
31 class FluidTemplateCache extends ‪PhpFrontend implements FluidCacheInterface
32 {
36  public function flush($name = null)
37  {
38  parent::flush();
39  }
40 
45  public function get($entryIdentifier)
46  {
47  return $this->requireOnce($entryIdentifier);
48  }
49 
57  public function set($entryIdentifier, $sourceCode, array $tags = [], $lifetime = null)
58  {
59  if (strpos($sourceCode, '<?php') === 0) {
60  // Remove opening PHP tag; it is added by the cache backend to which
61  // we delegate and would be duplicated if not removed.
62  $sourceCode = substr($sourceCode, 6);
63  }
64  parent::set($entryIdentifier, $sourceCode, $tags, time() + 86400);
65  }
66 
70  public function getCacheWarmer()
71  {
72  return new StandardCacheWarmer();
73  }
74 }
‪TYPO3\CMS\Core\Cache\Frontend\PhpFrontend
Definition: PhpFrontend.php:24
‪TYPO3\CMS\Fluid\Core\Cache
Definition: FluidTemplateCache.php:2
‪TYPO3\CMS\Core\Cache\Exception\InvalidDataException
Definition: InvalidDataException.php:21