gyro/core/lib/interfaces/icacheheadermanager.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Interface for cache header managers 00004 * 00005 * Cache header managers are resposible for sending HTTP cache headers 00006 */ 00007 interface ICacheHeaderManager { 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 }