-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathload.php
More file actions
38 lines (23 loc) · 737 Bytes
/
load.php
File metadata and controls
38 lines (23 loc) · 737 Bytes
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
35
36
37
38
<?php
/* Borno CMS
* This is the Borno cms load file
* load.php
* this page load all the function of this site
*
*
*
*/
/* Disable error reporting */
/* security package */
require_once('include/function/security.php');//opening the security.php , security file .
/* site-installer package */
require_once('include/function/site-install.php'); // include the site install function .
/* function package */
if(file_exists('config.php'))
require_once('include/function/function.php');//include the site function .
/* theme package */
if(file_exists('config.php'))
require_once('include/theme-opener.php');
if(!defined("MODE") or (!MODE=="DEVELOPMENT")){
error_reporting(0);
}