-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOptionsPage.php
More file actions
429 lines (370 loc) · 12.2 KB
/
Copy pathOptionsPage.php
File metadata and controls
429 lines (370 loc) · 12.2 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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<?php
namespace Laraish\Options;
use InvalidArgumentException;
use Laraish\Contracts\Options\OptionsPage as OptionsPageContract;
use Laraish\Contracts\Options\OptionsSection as OptionsSectionContract;
use Laraish\Support\Arr;
use Laraish\Support\Traits\ClassHelper;
class OptionsPage implements OptionsPageContract
{
use ClassHelper;
/**
* The slug name to refer to this menu by (should be unique for this menu).
* @var string
*/
private $menuSlug;
/**
* The text to be used for the menu.
* @var string
*/
private $menuTitle;
/**
* The text to be displayed in the title tags of the page when the menu is selected.
* @var string
*/
private $pageTitle;
/**
* The capability required for this menu to be displayed to the user.
* @var string
*/
private $capability = 'manage_options';
/**
* The URL to the icon to be used for this menu.
* @var string
*/
private $iconUrl = '';
/**
* The position in the menu order this one should appear.
* @var null|int
*/
private $position = null;
/**
* Settings Sections to be inserted into this page.
* @var array
*/
private $sections = [];
/**
* If you wish to make this page as a sub-page of a top-level page,
* set the top top-level here.
* @var null|string|OptionsPageContract
*/
private $parent;
/**
* The option group you wish to use in this page.
* @var string
*/
private $optionGroup;
/**
* The option name you wish to use in this page.
* @var string
*/
private $optionName;
/**
* The function to be called to output the content for this page.
* @var callable
*/
private $renderFunction;
/**
* The scripts to be enqueued.
* @var array
*/
private $scripts = [];
/**
* The styles to be enqueued.
* @var array
*/
private $styles = [];
/**
* The help tabs to be added to this page.
* @var array
*/
private $helpTabs = [];
/**
* OptionsPage constructor.
*
* @param array $configs
*/
public function __construct(array $configs)
{
$requiredOptions = ['menuSlug', 'menuTitle', 'pageTitle', 'optionGroup', 'optionName'];
$acceptableOptions = array_merge($requiredOptions, ['capability', 'iconUrl', 'position', 'sections', 'parent', 'optionGroup', 'renderFunction', 'scripts', 'styles', 'helpTabs']);
$this->convertMapToProperties($configs, $acceptableOptions, $requiredOptions, function ($option) {
return "The option `$option` must be defined when instantiate the class `" . static::class . "`.";
});
}
/**
* Register settings page.
* @return void
*/
final public function register()
{
// check user capabilities
if ( ! current_user_can($this->capability())) {
return;
}
// By default, the options groups for all registered settings require the manage_options capability.
// This filter is required to change the capability required for a certain options page.
$option_page = $this->optionGroup();
add_filter("option_page_capability_{$option_page}", function ($capability) {
return $this->capability();
});
// enqueue script and style
$this->enqueueAssets();
// if this is a sub-page, register this page as a sub-page to it's parent page
if ($this->parent()) {
$registerFunction = function () {
$hookSuffix = add_submenu_page(
($this->parent() instanceof OptionsPageContract ? $this->parent()->menuSlug() : $this->parent()),
$this->pageTitle(),
$this->menuTitle(),
$this->capability(),
$this->menuSlug(),
[$this, 'render']
);
$this->addHelpTabs($hookSuffix);
};
} else {
$registerFunction = function () {
$hookSuffix = add_menu_page(
$this->pageTitle(),
$this->menuTitle(),
$this->capability(),
$this->menuSlug(),
[$this, 'render'],
$this->iconUrl(),
$this->position()
);
$this->addHelpTabs($hookSuffix);
};
}
// register options page.
add_action('admin_menu', $registerFunction);
// register setting for this options page.
add_action('admin_init', function () {
register_setting($this->optionGroup(), $this->optionName());
});
// if there are any sections append them into this page.
if ($this->sections) {
foreach ($this->sections as &$section) {
if ( ! $section instanceof OptionsSectionContract) {
$section = new OptionsSection($section);
}
$section->register($this, $this->optionGroup(), $this->optionName());
}
}
}
private function addHelpTabs($hookSuffix)
{
if (empty($this->helpTabs)) {
return;
}
add_action("load-{$hookSuffix}", function () {
$screen = get_current_screen();
foreach ($this->helpTabs as $index => $helpTab) {
if (empty($helpTab['id'])) {
$helpTab['id'] = uniqid('laraish__');
}
$screen->add_help_tab($helpTab);
}
});
}
/**
* The function to be called to output the content for this page.
* @return void
*/
public function render()
{
// Display settings errors registered by `add_settings_error()`.
// It's not necessary to call `settings_errors()` when the page is a sub-page of `Settings` page.
// Because WordPress will call it automatically (see `wp-admin/options-head.php`)
if ($GLOBALS['parent_file'] !== 'options-general.php') {
settings_errors();
}
if (isset($this->renderFunction)) {
$form = new OptionsForm(OptionsRepository::getInstance($this->optionName()), $this->menuSlug());
call_user_func_array($this->renderFunction, [$this, $form]);
} else {
?>
<div class="wrap">
<h1><?php echo esc_html(get_admin_page_title()) ?></h1>
<form action="options.php" method="post" enctype="multipart/form-data">
<?php
if ($this->optionGroup) {
// output security fields for the registered setting "{{ $this->optionGroup }}"
settings_fields($this->optionGroup);
}
// output setting sections and their fields
do_settings_sections($this->menuSlug());
// output save settings button
submit_button();
?>
</form>
</div>
<?php
}
}
/**
* Enqueue the css and javascript files that this page required.
*/
private function enqueueAssets()
{
add_action('admin_enqueue_scripts', function ($hook) {
wp_enqueue_media();
if ( ! ($this->scripts() OR $this->styles())) {
return;
}
$thisPageHookSuffix = '_page_' . $this->menuSlug();
if (preg_match("/{$thisPageHookSuffix}$/", $hook)) {
$prefix = $this->menuSlug() . '__' . static::class . '__';
if ($this->scripts()) {
foreach ((array)$this->scripts() as $script) {
static::enqueueAsset($script, 'script', $prefix);
}
}
if ($this->styles()) {
foreach ((array)$this->styles() as $style) {
static::enqueueAsset($style, 'style', $prefix);
}
}
}
});
}
/**
* Enqueue an style or script
*
* @param string|array $asset <String>: The asset url or 'handle'. <Array>: The arguments passed to `wp_enqueue_style()` or `wp_enqueue_script()`.
* @param string $type The type of the asset. Must be 'script' or 'style'.
* @param string $prefix The prefix of the asset name. Ignored if the $asset is an array.
*/
static public function enqueueAsset($asset, $type, $prefix = 'laraish__')
{
if ( ! in_array($type, ['script', 'style'])) {
throw new InvalidArgumentException("The '\$type' argument should be either 'script' or 'style'. The given argument is '$type'.");
}
$scriptDependencies = ['jquery', 'underscore', 'backbone'];
if (is_array($asset)) {
if (Arr::isSequential($asset)) {
call_user_func_array("wp_enqueue_$type", $asset);
} else {
if ( ! isset($asset['name'])) {
throw new InvalidArgumentException('The `name` key is required.');
}
$defaults = [
'src' => '',
'dependencies' => [],
'version' => false,
'media' => 'all',
'in_footer' => false
];
$args = array_merge($defaults, $asset);
if ($type === 'style') {
wp_enqueue_style($args['name'], $args['src'], $args['dependencies'], $args['version'], $args['media']);
} else {
if ( ! isset($asset['dependencies'])) {
$args['dependencies'] = $scriptDependencies;
}
wp_enqueue_script($args['name'], $args['src'], $args['dependencies'], $args['version'], $args['in_footer']);
}
}
} else {
$assetName = $asset;
// If asset is a URL
if (filter_var($asset, FILTER_VALIDATE_URL)) {
$assetName = $prefix . pathinfo($asset)['basename'];
}
if ($type === 'style') {
wp_enqueue_style($assetName, $asset);
} else {
wp_enqueue_script($assetName, $asset, $scriptDependencies);
}
}
}
/**
* The slug name to refer to this menu by (should be unique for this menu).
* @return string
*/
final public function menuSlug()
{
return $this->menuSlug;
}
/**
* The text to be used for the menu.
* @return string
*/
final public function menuTitle()
{
return $this->menuTitle;
}
/**
* The text to be displayed in the title tags of the page when the menu is selected.
* @return string
*/
final public function pageTitle()
{
return $this->pageTitle;
}
/**
* The option-group to be used in the page.
* @return string
*/
final public function optionGroup()
{
return $this->optionGroup;
}
/**
* The option-name to be used in the page.
* @return string
*/
final public function optionName()
{
return $this->optionName;
}
/**
* The capability required for this menu to be displayed to the user.
* @return string
*/
final public function capability()
{
return $this->capability;
}
/**
* The URL to the icon to be used for this menu.
* @return string
*/
final public function iconUrl()
{
return $this->iconUrl;
}
/**
* The position in the menu order this one should appear.
* @return int
*/
final public function position()
{
return $this->position;
}
/**
* The parent page of this page if any.
* @return null|string|OptionsPage
*/
final public function parent()
{
return $this->parent;
}
/**
* Script to be enqueued.
* @return string
*/
final public function scripts()
{
return $this->scripts;
}
/**
* Style to be enqueued.
* @return string
*/
final public function styles()
{
return $this->styles;
}
}