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.3.9');
  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 'jServer.class.php');
  51. require (JELIX_LIB_CORE_PATH 'selector/jSelectorModule.class.php');
  52. require (JELIX_LIB_CORE_PATH 'selector/jSelectorActFast.class.php');
  53. require (JELIX_LIB_CORE_PATH 'selector/jSelectorAct.class.php');
  54. require (JELIX_LIB_CORE_PATH 'selector/jSelectorClass.class.php');
  55. require (JELIX_LIB_CORE_PATH 'selector/jSelectorDao.class.php');
  56. require (JELIX_LIB_CORE_PATH 'selector/jSelectorForm.class.php');
  57. require (JELIX_LIB_CORE_PATH 'selector/jSelectorIface.class.php');
  58. require (JELIX_LIB_CORE_PATH 'selector/jSelectorLoc.class.php');
  59. require (JELIX_LIB_CORE_PATH 'selector/jSelectorTpl.class.php');
  60. require (JELIX_LIB_CORE_PATH 'selector/jSelectorZone.class.php');
  61. require (JELIX_LIB_CORE_PATH 'selector/jSelectorSimpleFile.class.php');
  62. require (JELIX_LIB_CORE_PATH 'selector/jSelectorFile.lib.php');
  63. require (JELIX_LIB_CORE_PATH 'jUrlBase.class.php');
  64. require (JELIX_LIB_CORE_PATH 'jUrlAction.class.php');
  65. require (JELIX_LIB_CORE_PATH 'jUrl.class.php');
  66. require (JELIX_LIB_CORE_PATH 'jCoordinator.class.php');
  67. require (JELIX_LIB_CORE_PATH 'jController.class.php');
  68. require (JELIX_LIB_CORE_PATH 'jRequest.class.php');
  69. require (JELIX_LIB_CORE_PATH 'jResponse.class.php');
  70. require (JELIX_LIB_CORE_PATH 'jBundle.class.php');
  71. require (JELIX_LIB_CORE_PATH 'jLocale.class.php');
  72. require (JELIX_LIB_CORE_PATH 'jLog.class.php');
  73. require (JELIX_LIB_CORE_PATH 'jIncluder.class.php');
  74. require (JELIX_LIB_CORE_PATH 'jSession.class.php');
  75.  
  76. /**
  77.  * The main object of Jelix which process all things
  78.  * @global jCoordinator $gJCoord 
  79.  * @name $gJCoord
  80.  */
  81. $gJCoord null;
  82.  
  83. /**
  84.  * Object that contains all configuration values
  85.  * @global stdobject $gJConfig 
  86.  * @name $gJConfig
  87.  */
  88. $gJConfig null;
  89.  
  90. /**
  91.  * contains path for __autoload function
  92.  * @global array $gLibPath 
  93.  * @name $gLibPath
  94.  * @see __autoload()
  95.  */
  96. $gLibPath=array('Db'=>JELIX_LIB_PATH.'db/''Dao'=>JELIX_LIB_PATH.'dao/',
  97.  'Forms'=>JELIX_LIB_PATH.'forms/''Event'=>JELIX_LIB_PATH.'events/',
  98.  'Tpl'=>JELIX_LIB_PATH.'tpl/''Acl'=>JELIX_LIB_PATH.'acl/''Controller'=>JELIX_LIB_PATH.'controllers/',
  99.  'Auth'=>JELIX_LIB_PATH.'auth/''Installer'=>JELIX_LIB_PATH.'installer/',
  100.  'KV'=>JELIX_LIB_PATH.'kvdb/');
  101.  
  102. /**
  103.  * function used by php to try to load an unknown class
  104.  */
  105. function jelix_autoload($class{
  106.     if(preg_match('/^j(Dao|Tpl|Acl|Event|Db|Controller|Forms|Auth|Installer|KV).*/i'$class$m)){
  107.         $f=$GLOBALS['gLibPath'][$m[1]].$class.'.class.php';
  108.     }elseif(preg_match('/^cDao(?:Record)?_(.+)_Jx_(.+)_Jx_(.+)$/'$class$m)){
  109.         // for DAO which are stored in sessions for example
  110.         $s new jSelectorDao($m[1].'~'.$m[2]$m[3]false);
  111.         if($GLOBALS['gJConfig']->compilation['checkCacheFiletime']){
  112.             // if it is needed to check the filetime, then we use jIncluder
  113.             // because perhaps we will have to recompile the dao before the include
  114.             jIncluder::inc($s);
  115.         }else{
  116.             $f $s->getCompiledFilePath();
  117.             // we should verify that the file is here and if not, we recompile
  118.             // (case where the temp has been cleaned, see bug #6062 on berlios.de)
  119.             if (!file_exists($f)) {
  120.                 jIncluder::inc($s);
  121.             }
  122.             else
  123.                 require($f);
  124.         }
  125.         return;
  126.     }else{
  127.         $f JELIX_LIB_UTILS_PATH.$class.'.class.php';
  128.     }
  129.  
  130.     if(file_exists($f)){
  131.         require($f);
  132.     }
  133. }
  134.  
  135. spl_autoload_register("jelix_autoload");
  136.  
  137. /**
  138.  * check if the application is opened. If not, it displays the yourapp/install/closed.html
  139.  * file with a http error (or lib/jelix/installer/closed.html), and exit.
  140.  * This function should be called in all entry point, before the creation of the coordinator.
  141.  * @see jAppManager
  142.  * @todo migrate the code to jAppManager or jApp
  143.  */
  144. function checkAppOpened({
  145.     if (!jApp::isInit()) {
  146.         header("HTTP/1.1 500 Application not available");
  147.         header('Content-type: text/html');
  148.         echo "checkAppOpened: jApp is not initialized!";
  149.         exit(1);
  150.     }
  151.     if (file_exists(jApp::configPath('CLOSED'))) {
  152.         $message file_get_contents(jApp::configPath('CLOSED'));
  153.  
  154.         if (jServer::isCLI()) {
  155.             echo "Application closed."($message?"\n$message\n":"\n");
  156.             exit(1);
  157.         }
  158.  
  159.         if (file_exists(jApp::appPath('install/closed.html'))) {
  160.             $file jApp::appPath('install/closed.html');
  161.         }
  162.         else
  163.             $file JELIX_LIB_PATH.'installer/closed.html';
  164.  
  165.         header("HTTP/1.1 500 Application not available");
  166.         header('Content-type: text/html');
  167.         echo str_replace('%message%'$messagefile_get_contents($file));
  168.         exit(1);
  169.     }
  170. }
  171.  
  172. /**
  173.  * check if the application is not installed. If the app is installed, an
  174.  * error message appears and the scripts ends.
  175.  * It should be called only by some scripts
  176.  * like an installation wizard, not by an entry point.
  177.  * @todo migrate the code to jAppManager or jApp
  178.  */
  179. function checkAppNotInstalled({
  180.     if (isAppInstalled()) {
  181.          if (jServer::isCLI()) {
  182.             echo "Application is installed. The script cannot be runned.\n";
  183.         }
  184.         else {
  185.             header("HTTP/1.1 500 Application not available");
  186.             header('Content-type: text/plain');
  187.             echo "Application is installed. The script cannot be runned.\n";
  188.         }
  189.         exit(1);
  190.     }
  191. }
  192.  
  193. /**
  194.  * @todo migrate the code to jAppManager or jApp
  195.  */
  196. function isAppInstalled({
  197.     return file_exists(jApp::configPath('installer.ini.php'));
  198. }

Documentation generated on Wed, 24 Sep 2014 21:55:46 +0200 by phpDocumentor 1.4.3