-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEnum.php
More file actions
264 lines (219 loc) · 4.94 KB
/
Enum.php
File metadata and controls
264 lines (219 loc) · 4.94 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<?php
namespace App\Larabookir;
abstract class Enum
{
protected $consts = [], $attributes = [];
protected $translations = [];
protected static $singleton = [];
public static function singelton()
{
$class = get_called_class();
if (!isset(static::$singleton[$class])) {
static::$singleton[$class] = (new $class);
}
return static::$singleton[$class];
}
function __construct()
{
$class = get_called_class();
// Gets consts
$reflect = new \ReflectionClass($class);
$this->consts = $reflect->getConstants();
// fill translation variable
if (method_exists($this, 'translations'))
$this->translations = (array)$this->translations();
// fill csses
if (method_exists($this, 'attributes'))
$this->attributes = (array)$this->attributes();
}
/**
* Gets All list
* @return array
*/
public static function all()
{
$list = [];
foreach (self::singelton()->consts as $name => $val) {
$list[$name] = [
'title' => self::singelton()->translate($val),
'html' => self::singelton()->translate($val, true),
'value' => $val
];
}
return $list;
}
/**
* Gets All list except
* @param array $except
* @return array
*/
public static function except($except = [])
{
return array_except(self::all(), (array)$except);
}
/**
* Gets list only
* @param array $only
* @return array
*/
public static function only($only = [])
{
return array_only(self::all(), (array)$only);
}
/**
* @param $const
* @param bool|false $html
* @return mixed
*/
public static function getlabel($const, $html = false)
{
return self::singelton()->translate($const, $html);
}
/**
* Gets label list
* @param array $except
* @param bool|false $html
* @return array
*/
public static function getLabels($html = false)
{
$list = [];
foreach (self::singelton()->consts as $name => $const)
$list[$const] = self::getLabel($const, $html);
return $list;
}
/**
* Gets label list Exceptional
* @param array $except
* @param bool|false $html
* @return array
*/
public static function getLabelsExcept($except = [], $html = false)
{
return array_except(self::getLabels($html), (array)$except);
}
/**
* Gets the constants list mentioned in first parameter
*
* @param array $only
* @param bool $html
*
* @return array
* @internal param bool|false $style
*/
public static function getLabelsOnly($only = [], $html = false)
{
return array_only(self::getLabels($html), (array)$only);
}
/**
* Gets constants list
* @return array
*/
public static function getConstants()
{
return array_keys(self::singelton()->consts);
}
/**
* Gets constants list
* @param array $except
* @return array
*/
public static function getConstantsExcept($except = [])
{
return array_keys(array_except(self::singelton()->consts, (array)$except));
}
/**
* Gets constans slug list
* @return array
*/
public static function getSlugs()
{
$list = [];
foreach (self::getConstants() as $const)
$list[$const] = str_uslug($const);
return $list;
}
/**
* Gets constant slug list
* @param array $except
* @return array
*/
public static function getSlugsExcept($except = [])
{
return array_except(self::getSlugs(), (array)$except);
}
/**
* Finds constant related to given style
* @param $slug
* @return mixed
*/
public static function getConstBySlug($slug)
{
foreach (self::singelton()->consts as $name => $const) {
if (str_uslug($const) == $slug)
return $const;
}
}
/**
* Checks whether the given constant exists
* @param $name
* @param bool|false $strict
* @return bool
*/
public static function exists($name, $strict = false)
{
$constants = self::singelton()->consts;
if ($strict) {
return array_key_exists($name, $constants);
}
$keys = array_map('strtolower', array_keys($constants));
return in_array(strtolower($name), $keys);
}
/**
* Checks whether the given value exists
* @return array
* @internal param $value
*/
public static function getValues()
{
return array_values(self::singelton()->consts);
}
/**
* Checks whether the given value exists
* @return array
* @internal param $value
*/
public static function getValuesExcept($except = [])
{
return array_except(self::getValues(), (array)$except);
}
/**
* Checks whether the given value exists
* @param $value
* @return bool
*/
public static function valueExists($value)
{
return in_array($value, self::getValues(), true);
}
/**
* Translates constants
* @param $const
* @param bool|false $html
* @return null|string
*/
function translate($const, $html = false)
{
$label = null;
if (isset($this->translations[$const]))
$label = $this->translations[$const];
if ($html) {
// fill attributes
$attrs = null;
if (isset($this->attributes [$const]))
$attrs = html_attributes($this->attributes[$const]);
return "<label{$attrs}>$label</label>";
}
return $label;
}
}