MimeCacheManager Class Reference
[Mime]
Caches content client side, but not server side. More...
Inheritance diagram for
MimeCacheManager:
Public Member Functions |
|
__construct ($duration=false, $header_manager=false) | |
Constructor. |
Detailed Description
Caches content client side, but not server side.
Definition at line 8 of file mime.cachemanager.php.
Constructor & Destructor Documentation
Constructor.
- Parameters:
-
int $duration Cache duration , defaults to one month ICacheHeaderManager $header_manager Defaults to PrivateLazyCacheHeaderManager
Definition at line 15 of file mime.cachemanager.php.
00015 { 00016 if (empty($duration)) { 00017 $duration = GyroDate::ONE_MONTH; 00018 } 00019 if (empty($header_manager)) { 00020 $header_manager = new PrivateLazyCacheHeaderManager(); 00021 } 00022 parent::__construct('', $duration, $header_manager); 00023 }
The documentation for this class was generated from the following file:
- gyro/modules/mime/controller/base/cachemanager/mime.cachemanager.php