- <?
- /**
- * The Cache Package.
- * This is the init file for the myPHP Cache package
- *
- * @package cache
- * @filesource
- * @see MYPHP_CACHE_PATH/init.php
- * @copyright (c) http://Finn-Rasmussen.com
- * @license http://Finn-Rasmussen.com/license/ myPHP License conditions
- * @author http://Finn-Rasmussen.com
- * @version 1.9
- * @since 21-oct-2005
- */
-
- /**
- * @global HTML_CACHE_PATH Defines the Path to the packages, FIXED, do not change ...
- */
- define('HTML_CACHE_PATH', MYPHP_CACHE_PATH.'/html');
-
- /**
- * @global HTML_XYZ_PATH Defines the Path to each package, FIXED, do not change ...
- */
- define('HTML_CACHE_RESOURCE_PATH', HTML_CACHE_PATH.'/resource');
- define('HTML_CACHE_UTIL_PATH' , HTML_CACHE_PATH.'/util');
- define('HTML_CACHE_TEST_PATH' , HTML_CACHE_PATH.'/test');
-
- /**
- * Define the system constants, FIXED, do not change ...
- * must be called before Default.php
- * @see HTML_CACHE_RESOURCE_PATH.'/Define.php'
- */
- if (defined('HTML_CACHE_RESOURCE_PATH')) {
- if (file_exists(HTML_CACHE_RESOURCE_PATH.'/Define.php')) {
- require_once(HTML_CACHE_RESOURCE_PATH.'/Define.php');
- } else {
- die('MYPHP_CACHE_PATH/init.php, Unable to include HTML_CACHE_RESOURCE_PATH/Define.php from '.HTML_CACHE_RESOURCE_PATH);
- }
- }
- ?>