forked from stanislav-web/tecdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
34 lines (26 loc) · 987 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* @package TecDoc
* @subpackage Independence platform
* @version 1.1
* @author Stanislav WEB | Lugansk <[email protected]>
* @copyright Stanilav WEB
* @license TecDoc Informations System GmbH
* @date 20.12.2012
* @filesource /CURRENT_DIR/index.php
* @link https://github.com/Stanisov/tecdoc/blob/master/index.php Repository here
* @todo точка входа в приложение
*/
if(!session_start()) session_start(); // стартую сессию по каталогу
setlocale(LC_CTYPE, "ru_RU.UTF-8"); // устанавливаю локаль UTF-8
/**
* Подключаю файл конфигурации каталога
*/
if(file_exists('configuration.php')) require_once('configuration.php');
else die('Can\'t find configuration.php');
$exec = new Template($_CONFIG, $Applet); // инициализирую объект каталога
/**
* Выполняем приложение
*/
if($exec instanceof Template) $exec->view();
?>