-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
executable file
·183 lines (172 loc) · 3.7 KB
/
config.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<?php
/**
* APLib - A PHP library to create your website smooth, easy & secure
*
* @package APLib
* @version 0.1
* @author ALMA PRO LEADER
* @license MIT License
* @copyright 2017-2018
* @link https://github.com/almapro/APLib/
*/
namespace APLib;
/**
* Config - A class containing all configuration and common calls
*/
class Config
{
/**
* @var array $configurations an array containing all configurations
*/
private static $configurations = array();
/**
* Set a configuration's value
*
* @param string $name configuration's name
* @param object $value configuration's value
*
* @return void
*/
public static function set($name, $value)
{
static::$configurations[$name] = $value;
}
/**
* Get a configuration's value
*
* @param string $name configuration's name
*
* @return object
*/
public static function get($name)
{
return (isset(static::$configurations[$name])) ? static::$configurations[$name] : null;
}
/**
* Initiate Config
*
* @return void
*/
function init()
{
static::set(
'composer loader',
__DIR__.'/composed/vendor/autoload.php'
);
static::set(
'DB Host',
'localhost'
);
static::set(
'DB Name',
'APLibDB'
);
static::set(
'DB User',
'root'
);
static::set(
'DB Pass',
''
);
static::set(
'title',
'APLib - A PHP Library to create your website smooth, easy & secure'
);
static::set(
'FrontEnd',
true
);
static::set(
'Cookie Name',
'APLibCookie'
);
static::set(
'Cookie Timeout',
(86400 * 3650) // 10 years
);
static::set(
'Secure params',
array(
'username',
'user',
'password',
'pass',
'search',
'q',
'id'
)
);
}
/**
* Call common functions
*
* @return void
*/
public static function common()
{
/**
* You can start by adding your common calls.
*/
//////////////////////////////////////
// Security Check is Required Here //
////////////////////////////////////
header("Access-Control-Max-Age: 3600");
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: POST, GET");
header("Access-Control-Allow-Headers: Content-Type, Authorization, Access-Control-Allow-Headers, X-Requested-With");
/**
* Multi language websites can use common phrases from below
*/
\APLib\Language::set(
array(
array('name' => 'English', 'code' => 'en'),
array('name' => 'Español', 'code' => 'es'),
array('name' => 'العربية', 'code' => 'ar')
)
);
\APLib\Language::add(
array(
'placeholder' => '%g%',
'lang' => 'en',
'value' => 'Hello'
)
);
\APLib\Language::add(
array(
'placeholder' => '%g%',
'lang' => 'es',
'value' => 'Hola'
)
);
\APLib\Language::add(
array(
'placeholder' => '%g%',
'lang' => 'ar',
'value' => 'مرحباً'
)
);
\APLib\Language::add(
array(
'placeholder' => '%wb%',
'lang' => 'en',
'value' => 'Welcome back'
)
);
\APLib\Language::add(
array(
'placeholder' => '%wb%',
'lang' => 'es',
'value' => 'Dar una buena acogida'
)
);
\APLib\Language::add(
array(
'placeholder' => '%wb%',
'lang' => 'ar',
'value' => 'أهلاً مجدداً'
)
);
}
}
?>