- <?
- /**
- * This file is the global page start
- * The page is build with the myPHP TagLib
- *
- * @package template
- * @filesource
- * @see INC_PATH.PAGE_START_FILE_NAME
- * @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
- */
-
- /**
- * The Require files
- * @see INC_PATH.PAGE_REQUIRE_FILE_NAME
- */
- if (file_exists(INC_PATH.PAGE_REQUIRE_FILE_NAME)) {
- require_once(INC_PATH.PAGE_REQUIRE_FILE_NAME);
- }
-
-
- // TODO how to set the SID. Must come before any print '';
- //require_once(HTML_UTIL_COMPONENT_PATH.'/Session.php');
- //print 'SID='.Session::getId()."<br />\r\n";
-
-
-
- /**
- * Go Google Search, if requested?
- * @see EngineGoogle::display()
- */
- if (defined('HTML_MENU_CONTROLLER_PATH')) {
- EngineGoogle::display(); // and exit
- }
-
- /**
- * The Head section
- * @see INC_PATH.PAGE_HEAD_FILE_NAME
- */
- if (file_exists(INC_PATH.PAGE_HEAD_FILE_NAME)) {
- require_once(INC_PATH.PAGE_HEAD_FILE_NAME);
- }
-
- /**
- * The Body section
- * @see BodyStart::display()
- * @see Noscript::display()
- */
- if (defined('HTML_BASE_PAGE_PATH')) {
- BodyStart::display();
- Noscript::display();
- }
-
- /**
- * The Top File name
- * @see INC_PATH.PAGE_TOP_FILE_NAME
- */
- if (file_exists(INC_PATH.PAGE_TOP_FILE_NAME)) {
- require_once(INC_PATH.PAGE_TOP_FILE_NAME);
- }
-
- /**
- * The Tab File name
- * @see INC_PATH.PAGE_TAb_FILE_NAME
- */
- if (file_exists(INC_PATH.PAGE_TAB_FILE_NAME)) {
- require_once(INC_PATH.PAGE_TAB_FILE_NAME);
- }
-
- /**
- * The Skeleton File name
- * @see INC_PATH.PAGE_SKELETON_FILE_NAME
- */
- if (file_exists(INC_PATH.PAGE_SKELETON_FILE_NAME)) {
- require_once(INC_PATH.PAGE_SKELETON_FILE_NAME);
- }
- ?>