gyro/core/controller/base/cachemanager/nocachecachemanager.cls.php
Go to the documentation of this file.00001 <?php 00002 require_once dirname(__FILE__) . '/constantcachemanager.cls.php'; 00003 00004 /** 00005 * Cache manager to disable caching 00006 * 00007 * @author Gerd Riesselmann 00008 * @ingroup Controller 00009 */ 00010 class NoCacheCacheManager extends ConstantCacheManager { 00011 /** 00012 * Constructor 00013 * 00014 * @param int $duration Cache duration , defaults to 2 hours 00015 * @param ICacheHeaderManager $header_manager Defaults to NoCacheCacheHeaderManager 00016 */ 00017 public function __construct($duration = 7200, $header_manager = false) { 00018 parent::__construct('', $duration, $header_manager); 00019 } 00020 }