-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathiCMS.php
More file actions
22 lines (20 loc) · 781 Bytes
/
iCMS.php
File metadata and controls
22 lines (20 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* iCMS - i Content Management System
* Copyright (c) 2007-2017 iCMSdev.com. All rights reserved.
*
* @author icmsdev <[email protected]>
* @site https://www.icmsdev.com
* @licence https://www.icmsdev.com/LICENSE.html
*/
define('iPHP', true);
define('iPHP_APP', 'iCMS'); //应用名
require_once __DIR__ . '/config/define.php'; //定义常量
require_once __DIR__ . '/config/secretkey.php'; //密钥
require_once __DIR__ . '/config/git.php'; //GIT版本
require_once __DIR__ . '/config/version.php'; //iCMS版本
require_once __DIR__ . '/iPHP/bootstrap.php'; //iPHP框架
require_once __DIR__ . '/core/iCMS.php'; //iCMS
require_once __DIR__ . '/core/function.php'; //常用函数
iCMS::bootstrap();