XpressEngine Core  1.11.2
 All Classes Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) NAVER <http://www.navercorp.com> */
35 define('__XE__', TRUE);
39 require dirname(__FILE__) . '/config/config.inc.php';
40 
46 $oContext->init();
47 
51 if($oContext->checkSSO())
52 {
53  $oModuleHandler = new ModuleHandler();
54 
55  try
56  {
57  if($oModuleHandler->init())
58  {
59  $oModuleHandler->displayContent($oModuleHandler->procModule());
60  }
61  }
62  catch(Exception $e)
63  {
64  htmlHeader();
65  echo Context::getLang($e->getMessage());
66  htmlFooter();
67  }
68 }
69 
70 $oContext->close();
71 
72 /* End of file index.php */
73 /* Location: ./index.php */
$oContext
Include the necessary configuration files.
Definition: index.php:45
htmlFooter()
Definition: func.inc.php:1727
getLang($code)
& getInstance()
htmlHeader()
Definition: func.inc.php:1712