- <?
- /**
- * The myPHP Layout package.
- * This is the init file for the local packages in the myPHP system
- *
- * @package layout
- * @filesource
- * @see myphp-package.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 String MYPHP_BASE_PATH The Base package
- */
- if (!defined('MYPHP_BASE_PATH')) {
- define('MYPHP_BASE_PATH' ,MYPHP_BASE_NAME);
- }
- /**
- * @global String MYPHP_TABLE_PATH The Table package
- */
- if (!defined('MYPHP_TABLE_PATH')) {
- define('MYPHP_TABLE_PATH' ,MYPHP_TABLE_NAME);
- }
- /**
- * @global String MYPHP_PAGE_PATH The Page package
- */
- if (!defined('MYPHP_PAGE_PATH')) {
- define('MYPHP_PAGE_PATH' ,MYPHP_PAGE_NAME);
- }
- /**
- * @global String MYPHP_FORM_PATH The Form package
- */
- if (!defined('MYPHP_FORM_PATH')) {
- define('MYPHP_FORM_PATH' ,MYPHP_FORM_NAME);
- }
- /**
- * @global String MYPHP_LAYOUT_PATH The Layout package
- */
- if (!defined('MYPHP_LAYOUT_PATH')) {
- define('MYPHP_LAYOUT_PATH' ,MYPHP_LAYOUT_NAME);
- }
- ?>