contributions/usermanagement/controller/base/cachemanager/headermanager/privaterigidetagonly.cacheheader.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * This cache header manager allows the client to store a page 00004 * but forces it to revalidate, which though is checked only 00005 * against the etag 00006 */ 00007 class PrivateRigidEtagOnlyCacheHeaderManager extends PrivateRigidCacheHeaderManager { 00008 /** 00009 * Send cache headers 00010 * 00011 * @param string $content 00012 * @param timestamp $expirationdate 00013 * @param timestamp $lastmodifieddate 00014 */ 00015 public function send_headers(&$content, $expirationdate, $lastmodifieddate) { 00016 parent::send_headers($content, $expirationdate, false); 00017 } 00018 }