- <?
- /**
- * The util Package.
- * This is the init file for the myPHP Util package
- *
- * @package util
- * @filesource
- * @see MYPHP_UTIL_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
- */
-
- /**
- * Defines the Path to the Util package, FIXED, do not change ...
- * @global HTML_UTIL_PATH Html Util path
- */
- define('HTML_UTIL_PATH' , MYPHP_UTIL_PATH.'/html');
- define('HTML_UTIL_COMPONENT_PATH', HTML_UTIL_PATH.'/component');
- define('HTML_UTIL_RESOURCE_PATH' , HTML_UTIL_PATH.'/resource');
-
- /**
- * Define the system Util constants, FIXED, do not change ...
- * must be called before Default.php
- * @see HTML_UTIL_RESOURCE_PATH.'/Define.php' The Define Util Package
- */
- if (defined('HTML_UTIL_RESOURCE_PATH')) {
- if (file_exists(HTML_UTIL_RESOURCE_PATH.'/Define.php')) {
- require_once(HTML_UTIL_RESOURCE_PATH.'/Define.php');
- } else {
- die('MYPHP_UTIL_PATH/init.php, Unable to include HTML_UTIL_RESOURCE_PATH/Define.php from '.HTML_UTIL_RESOURCE_PATH);
- }
- }
-
- /**
- * Define the default Util values, FIXED, do not change ...
- * NOTE: Define.php must be called before this file
- * @see HTML_UTIL_RESOURCE_PATH.'/Default.php' The Default Util Package
- */
- if (defined('HTML_UTIL_RESOURCE_PATH')) {
- if (file_exists(HTML_UTIL_RESOURCE_PATH.'/Default.php')) {
- require_once(HTML_UTIL_RESOURCE_PATH.'/Default.php');
- } else {
- die('MYPHP_UTIL_PATH/init.php, Unable to include HTML_UTIL_RESOURCE_PATH/Default.php from '.HTML_UTIL_RESOURCE_PATH);
- }
- }
-
- ?>