-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (24 loc) · 857 Bytes
/
index.php
File metadata and controls
29 lines (24 loc) · 857 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
<?php
/**
* D2dSoft
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL v3.0) that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL: https://d2d-soft.com/license/AFL.txt
*
* DISCLAIMER
* Do not edit or add to this file if you wish to upgrade this extension/plugin/module to newer version in the future.
*
* @author D2dSoft Developers <developer@d2d-soft.com>
* @copyright Copyright (c) 2021 D2dSoft (https://d2d-soft.com)
* @license https://d2d-soft.com/license/AFL.txt
*/
error_reporting(0);
session_start();
define('DS', DIRECTORY_SEPARATOR);
define('_ROOT_DIR', dirname(__FILE__));
define('_APP_DIR', _ROOT_DIR . DS . 'app');
include _APP_DIR . DS . 'bootstrap.php';
$bootstrap = Bootstrap::getInstance();
$bootstrap->run();