NewsFeaturesDownloadsDevelopmentSupportAbout Us

lifetype/branches/lifetype-1.0.6/resserver.php

Go to the documentation of this file.
00001 <?php
00002 
00009     if (!defined( "PLOG_CLASS_PATH" )) {
00010         define( "PLOG_CLASS_PATH", dirname(__FILE__)."/");
00011     }
00012     
00013     include_once( PLOG_CLASS_PATH."class/config/config.class.php" );
00014 
00015         // the functionality of the old ressever.php file have been moved
00016         // to the action ResourceServerAction and ResourceServerView for better
00017         // integration with the reset of the framework. This file has been kept
00018         // here for compatibility reasons and it is still referenced in all urls
00019         // generated internally that point to resources so please DO NOT REMOVE IT!
00020         $_REQUEST["op"] = "ResourceServer";
00021         
00022         $config =& Config::getConfig();
00023         $indexPage = $config->getValue( "script_name", "index.php" );
00024         
00025         include_once( PLOG_CLASS_PATH.$indexPage );
00026 ?>