-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
36 lines (27 loc) · 837 Bytes
/
index.php
File metadata and controls
36 lines (27 loc) · 837 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
<?php
/**
* Schema PHP Template Framework
*
* @version 1.1.6
* @link https://schema.io
* @license http://opensource.org/licenses/mit MIT
*/
/* -----------------------------------------------------
* Set framework file paths
* -------------------------------------------------- */
$paths = array(
// Base URI path, relative to server document root
'uri' => '/',
// Path to root directory (where index.php and config.php exist)
'root' => __DIR__,
// Path to core directory
'core' => __DIR__.'/core',
// Path to plugins directory
'plugins' => __DIR__.'/plugins',
// Path to templates directory
'templates' => __DIR__.'/templates'
);
/* -----------------------------------------------------
* Start the framework
* -------------------------------------------------- */
require $paths['core'].'/start.php';