Source for file init.php

Documentation is available at init.php

  1. <?php
  2. /**
  3. * Initialize all defines and includes necessary files
  4. *
  5. @package  jelix
  6. @subpackage core
  7. @author   Laurent Jouanneau
  8. @contributor Loic Mathaud, Julien Issler
  9. @copyright 2005-2011 Laurent Jouanneau
  10. @copyright 2007 Julien Issler
  11. @link     http://www.jelix.org
  12. @licence  GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  13. */
  14.  
  15.  
  16. /**
  17.  * Version number of Jelix
  18.  * @name  JELIX_VERSION
  19.  */
  20. define ('JELIX_VERSION''1.4pre.2097');
  21.  
  22. /**
  23.  * base of namespace path used in xml files of jelix
  24.  * @name  JELIX_NAMESPACE_BASE
  25.  */
  26. define ('JELIX_NAMESPACE_BASE' 'http://jelix.org/ns/');
  27.  
  28. define ('JELIX_LIB_PATH',         dirname (__FILE__).'/');
  29. define ('JELIX_LIB_CORE_PATH',    JELIX_LIB_PATH.'core/');
  30. define ('JELIX_LIB_UTILS_PATH',   JELIX_LIB_PATH.'utils/');
  31. define ('LIB_PATH',               dirname(JELIX_LIB_PATH).'/');
  32.  
  33. define ('BYTECODE_CACHE_EXISTS'function_exists('apc_cache_info'|| function_exists('eaccelerator_info'|| function_exists('xcache_info'));
  34.  
  35. if(!defined('E_DEPRECATED'))
  36.     define ('E_DEPRECATED',8192);
  37. if(!defined('E_USER_DEPRECATED'))
  38.     define ('E_USER_DEPRECATED',16384);
  39. error_reporting (E_ALL E_STRICT);
  40.  
  41. require (JELIX_LIB_CORE_PATH 'jApp.class.php');
  42. require (JELIX_LIB_CORE_PATH 'jICoordPlugin.iface.php');
  43. require (JELIX_LIB_CORE_PATH 'jISelector.iface.php');
  44. require (JELIX_LIB_CORE_PATH 'jIUrlEngine.iface.php');
  45. require (JELIX_LIB_CORE_PATH 'jErrorHandler.lib.php');
  46. require (JELIX_LIB_CORE_PATH 'jException.lib.php');
  47. require (JELIX_LIB_CORE_PATH 'jContext.class.php');
  48. require (JELIX_LIB_CORE_PATH 'jConfig.class.php');
  49. require (JELIX_LIB_CORE_PATH 'jSelector.class.php');
  50. require (JELIX_LIB_CORE_PATH 'selector/jSelectorModule.class.php');
  51. require (JELIX_LIB_CORE_PATH 'selector/jSelectorActFast.class.php');
  52. require (JELIX_LIB_CORE_PATH 'selector/jSelectorAct.class.php');
  53. require (JELIX_LIB_CORE_PATH 'selector/jSelectorClass.class.php');
  54. require (JELIX_LIB_CORE_PATH 'selector/jSelectorDao.class.php');
  55. require (JELIX_LIB_CORE_PATH 'selector/jSelectorForm.class.php');
  56. require (JELIX_LIB_CORE_PATH 'selector/jSelectorIface.class.php');
  57. require (JELIX_LIB_CORE_PATH 'selector/jSelectorLoc.class.php');
  58. require (JELIX_LIB_CORE_PATH 'selector/jSelectorTpl.class.php');
  59. require (JELIX_LIB_CORE_PATH 'selector/jSelectorZone.class.php');
  60. require (JELIX_LIB_CORE_PATH 'selector/jSelectorSimpleFile.class.php');
  61. require (JELIX_LIB_CORE_PATH 'selector/jSelectorFile.lib.php');
  62. require (JELIX_LIB_CORE_PATH 'jUrlBase.class.php');
  63. require (JELIX_LIB_CORE_PATH 'jUrlAction.class.php');
  64. require (JELIX_LIB_CORE_PATH 'jUrl.class.php');
  65. require (JELIX_LIB_CORE_PATH 'jCoordinator.class.php');
  66. require (JELIX_LIB_CORE_PATH 'jController.class.php');
  67. require (JELIX_LIB_CORE_PATH 'jRequest.class.php');
  68. require (JELIX_LIB_CORE_PATH 'jResponse.class.php');
  69. require (JELIX_LIB_CORE_PATH 'jBundle.class.php');
  70. require (JELIX_LIB_CORE_PATH 'jLocale.class.php');
  71. require (JELIX_LIB_CORE_PATH 'jLog.class.php');
  72. require (JELIX_LIB_CORE_PATH 'jIncluder.class.php');
  73. require (JELIX_LIB_CORE_PATH 'jSession.class.php');
  74.  
  75. /**
  76.  * The main object of Jelix which process all things
  77.  * @global jCoordinator $gJCoord 
  78.  * @name $gJCoord
  79.  */
  80. $gJCoord null;
  81.  
  82. /**
  83.  * Object that contains all configuration values
  84.  * @global stdobject $gJConfig 
  85.  * @name $gJConfig
  86.  */
  87. $gJConfig null;
  88.  
  89. /**
  90.  * contains path for __autoload function
  91.  * @global array $gLibPath 
  92.  * @name $gLibPath
  93.  * @see __autoload()
  94.  */
  95. $gLibPath=array('Db'=>JELIX_LIB_PATH.'db/''Dao'=>JELIX_LIB_PATH.'dao/',
  96.  'Forms'=>JELIX_LIB_PATH.'forms/''Event'=>JELIX_LIB_PATH.'events/',
  97.  'Tpl'=>JELIX_LIB_PATH.'tpl/''Acl'=>JELIX_LIB_PATH.'acl/''Controller'=>JELIX_LIB_PATH.'controllers/',
  98.  'Auth'=>JELIX_LIB_PATH.'auth/''Installer'=>JELIX_LIB_PATH.'installer/',
  99.  'KV'=>JELIX_LIB_PATH.'kvdb/');
  100.  
  101. /**
  102.  * function used by php to try to load an unknown class
  103.  */
  104. function jelix_autoload($class{
  105.     if(preg_match('/^j(Dao|Tpl|Acl|Event|Db|Controller|Forms|Auth|Installer|KV).*/i'$class$m)){
  106.         $f=$GLOBALS['gLibPath'][$m[1]].$class.'.class.php';
  107.     }elseif(preg_match('/^cDao(?:Record)?_(.+)_Jx_(.+)_Jx_(.+)$/'$class$m)){
  108.         // for DAO which are stored in sessions for example
  109.         $s new jSelectorDao($m[1].'~'.$m[2]$m[3]false);
  110.         if($GLOBALS['gJConfig']->compilation['checkCacheFiletime']){
  111.             // if it is needed to check the filetime, then we use jIncluder
  112.             // because perhaps we will have to recompile the dao before the include
  113.             jIncluder::inc($s);
  114.         }else{
  115.             $f $s->getCompiledFilePath();
  116.             // we should verify that the file is here and if not, we recompile
  117.             // (case where the temp has been cleaned, see bug #6062 on berlios.de)
  118.             if (!file_exists($f)) {
  119.                 jIncluder::inc($s);
  120.             }
  121.             else
  122.                 require($f);
  123.         }
  124.         return;
  125.     }else{
  126.         $f JELIX_LIB_UTILS_PATH.$class.'.class.php';
  127.     }
  128.  
  129.     if(file_exists($f)){
  130.         require($f);
  131.     }
  132. }
  133.  
  134. spl_autoload_register("jelix_autoload");
  135.  
  136. /**
  137.  * check if the application is opened. If not, it displays the yourapp/install/closed.html
  138.  * file with a http error (or lib/jelix/installer/closed.html), and exit.
  139.  * This function should be called in all entry point, before the creation of the coordinator.
  140.  * @see jAppManager
  141.  * @todo migrate the code to jAppManager or jApp
  142.  */
  143. function checkAppOpened({
  144.     if (!jApp::isInit()) {
  145.         header("HTTP/1.1 500 Application not available");
  146.         header('Content-type: text/html');
  147.         echo "checkAppOpened: jApp is not initialized!";
  148.         exit(1);
  149.     }
  150.     if (file_exists(jApp::configPath('CLOSED'))) {
  151.         $message file_get_contents(jApp::configPath('CLOSED'));
  152.  
  153.         if (php_sapi_name(== 'cli'{
  154.             echo "Application closed."($message?"\n$message\n":"\n");
  155.             exit(1);
  156.         }
  157.  
  158.         if (file_exists(jApp::appPath('install/closed.html'))) {
  159.             $file jApp::appPath('install/closed.html');
  160.         }
  161.         else
  162.             $file JELIX_LIB_PATH.'installer/closed.html';
  163.  
  164.         header("HTTP/1.1 500 Application not available");
  165.         header('Content-type: text/html');
  166.         echo str_replace('%message%'$messagefile_get_contents($file));
  167.         exit(1);
  168.     }
  169. }
  170.  
  171. /**
  172.  * check if the application is not installed. If the app is installed, an
  173.  * error message appears and the scripts ends.
  174.  * It should be called only by some scripts
  175.  * like an installation wizard, not by entry point.
  176.  * @todo migrate the code to jAppManager or jApp
  177.  */
  178. function checkAppNotInstalled({
  179.     if (isAppInstalled()) {
  180.          if (php_sapi_name(== 'cli'{
  181.             echo "Application is installed. The script cannot be runned.\n";
  182.         }
  183.         else {
  184.             header("HTTP/1.1 500 Application not available");
  185.             header('Content-type: text/plain');
  186.             echo "Application is installed. The script cannot be runned.\n";
  187.         }
  188.         exit(1);
  189.     }
  190. }
  191.  
  192. /**
  193.  * @todo migrate the code to jAppManager or jApp
  194.  */
  195. function isAppInstalled({
  196.     return file_exists(jApp::configPath('installer.ini.php'));
  197. }

Documentation generated on Mon, 19 Sep 2011 14:11:44 +0200 by phpDocumentor 1.4.3