-
Notifications
You must be signed in to change notification settings - Fork 0
/
include.php
127 lines (104 loc) · 2.22 KB
/
include.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
/*******************************************************************************
* This file essentially defines several functions to make 'includes' and *
* 'requires' easier when using the the project's configured folder locations. *
*******************************************************************************/
require_once('locations.php');
// The extra curly braces around these sections are so I can 'fold' and hide
// them in my editor of choice. They apparently do not hinder the parser, and
// the code runs just fine.
// Functions to grab the file's real path:
{
function rootPath($file)
{
return sprintf('%s/%s', Location::ROOT(), $file);
}
function httpPath($file)
{
return sprintf('%s/%s', Location::HTTP(), $file);
}
function templatePath($file)
{
return sprintf('%s/%s', Location::TEMPLATES(), $file);
}
function modulePath($file)
{
return sprintf('%s/%s', Location::MODULES(), $file);
}
}
// Functions equivalent to 'include()':
{
function includeRoot($file)
{
include(rootPath($file));
}
function includeHttp($file)
{
include(httpPath($file));
}
function includeTemplate($file)
{
include(templatePath($file));
}
function includeModule($file)
{
include(modulePath($file));
}
}
// Functions equivalent to 'include_once()':
{
function includeOnceRoot($file)
{
include_once(rootPath($file));
}
function includeOnceHttp($file)
{
include_once(httpPath($file));
}
function includeOnceTemplate($file)
{
include_once(templatePath($file));
}
function includeOnceModule($file)
{
include_once(modulePath($file));
}
}
// Functions equivalent to 'require()':
{
function requireRoot($file)
{
require(rootPath($file));
}
function requireHttp($file)
{
require(httpPath($file));
}
function requireTemplate($file)
{
require(templatePath($file));
}
function requireModule($file)
{
require(modulePath($file));
}
}
// Functions equivalent to 'require_once()':
{
function requireOnceRoot($file)
{
require_once(rootPath($file));
}
function requireOnceHttp($file)
{
require_once(httpPath($file));
}
function requireOnceTemplate($file)
{
require_once(templatePath($file));
}
function requireOnceModule($file)
{
require_once(modulePath($file));
}
}