alex Sat Jul 28 10:54:17 2001 EDT
Added files:
/r2/binarycloud/base/core Cache.php
Log:
shell of the Cache class.
Index: r2/binarycloud/base/core/Cache.php
+++ r2/binarycloud/base/core/Cache.php
<?php
// Header {{{
/**
** -File $Id: Cache.php,v 1.1 2001/07/28 17:54:17 alex Exp $
** -License LGPL (http://www.gnu.org/copyleft/lesser.html)
** -Copyright 2001, The Turing Studio, Inc.
** -Author alex black, en...@tu...
**/
$PACKAGE='binarycloud.core';
// }}}
// {{{ Cache
/**
* This is the bc Cache class, it serves as a wrapper for the PEAR
* Cache class. This class captures page output, and allows for quick
* retrieval based on request_uri.
*
* @author alex black, en...@tu...
*/
class Cache {
// {{{ CaptureOutput
/**
* This method checks the contents of the output buffer when it
* is called, and stores it using PEAR Cache.
*
* @author alex black, en...@tu...
* @access public
*/
function CaptureOutput() {
}
// }}}
}
// }}}
?>
|