TYPO3 CMS  TYPO3_6-2
DatabasePreset.php
Go to the documentation of this file.
1 <?php
3 
18 
23 
27  protected $name = 'Database';
28 
32  protected $priority = 50;
33 
37  protected $configurationValues = array(
38  'SYS/caching/cacheConfigurations/extbase_object' => array(
39  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
40  'backend' => 'TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend',
41  'options' => array(
42  'defaultLifetime' => 0,
43  ),
44  'groups' => array('system')
45  )
46  );
47 
53  public function isAvailable() {
54  return TRUE;
55  }
56 }