-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.php
More file actions
630 lines (545 loc) · 11.5 KB
/
plugin.php
File metadata and controls
630 lines (545 loc) · 11.5 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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
<?php
/**
* Meta Data
*
* Plugin core class, do not namespace.
*
* @package Meta Data
* @subpackage Core
* @since 1.0.0
*/
// Stop if accessed directly.
if ( ! defined( 'BLUDIT' ) ) {
die( 'You are not allowed direct access to this file.' );
}
// Access namespaced functions.
use function Meta_Data\{
site,
lang,
is_rtl,
meta_tags_standard,
meta_tags_schema,
meta_tags_open_graph,
meta_tags_twitter,
meta_tags_dublin_core,
title_tag,
meta_tag_language,
meta_tag_keywords,
meta_tag_title,
meta_tag_description,
meta_tag_author,
meta_tag_copyright
};
class Meta_Data extends Plugin {
/**
* Constructor method
*
* @since 1.0.0
* @access public
* @return self
*/
public function __construct() {
// Run parent constructor.
parent :: __construct();
// Include functionality.
if ( $this->installed() ) {
$this->get_files();
}
}
/**
* Prepare plugin for installation
*
* @since 1.0.0
* @access public
* @return void
*/
public function prepare() {
$this->get_files();
}
/**
* Include functionality
*
* @since 1.0.0
* @access public
* @return void
*/
public function get_files() {
// Plugin path.
$path = $this->phpPath();
// Get plugin functions.
require_once $path . 'includes/functions.php';
}
/**
* Initiate plugin
*
* @since 1.0.0
* @access public
* @return void
*/
public function init() {
$this->dbFields = [
'title_sep' => '|',
'custom_sep' => '',
'loop_title' => '',
'loop_desc' => '',
'default_ttag' => '',
'loop_ttag' => '',
'post_ttag' => '',
'page_ttag' => '',
'cat_ttag' => '',
'tag_ttag' => '',
'search_ttag' => '',
'error_ttag' => '',
'use_title_tag' => true,
'meta_hook' => 'all_meta_tags',
'meta_noindex' => false,
'meta_keywords' => '',
'meta_use_std' => true,
'meta_use_schema' => true,
'meta_use_og' => true,
'meta_use_twitter' => true,
'meta_use_dublin' => false,
'meta_custom' => '',
'footer_scripts' => ''
];
// Array of custom hooks.
$this->customHooks = [
'title_tag',
'all_meta_tags',
'standard_tags',
'schema_tags',
'open_graph_tags',
'twitter_tags',
'dublin_core_tags',
'meta_tag_title',
'meta_tag_language',
'meta_tag_keywords',
'meta_tag_description',
'meta_tag_author',
'meta_tag_copyright'
];
if ( ! $this->installed() ) {
$Tmp = new dbJSON( $this->filenameDb );
$this->db = $Tmp->db;
$this->prepare();
}
}
/**
* Admin settings form
*
* @since 1.0.0
* @access public
* @return string Returns the markup of the form.
*/
public function form() {
$html = '';
ob_start();
include( $this->phpPath() . '/views/page-form.php' );
$html .= ob_get_clean();
return $html;
}
/**
* Minified asset
*
* Gets minified CSS and JavaScript files or
* non-minified if in debug mode.
*
* @since 1.0.0
* @access public
* @return string Returns the `.min` suffix or empty.
*/
public function minify() {
$suffix = '.min';
if ( defined( 'DEBUG_MODE' ) && DEBUG_MODE ) {
$suffix = '';
}
return $suffix;
}
/**
* Admin controller
*
* Change the text of the `<title>` tag.
*
* @since 1.0.0
* @access public
* @global array $layout
* @return string Returns the head content.
*/
public function adminController() {
// Access global variables.
global $layout;
// Title separator.
$sep = ' | ';
if ( isset( $_GET['page'] ) && 'dummy' == $_GET['page'] ) {
$layout['title'] = lang()->get( 'Meta Data' ) . "{$sep}" . site()->title();
} else {
$layout['title'] = lang()->get( 'Meta Data Guide' ) . "{$sep}" . site()->title();
}
}
/**
* Admin info pages
*
* @since 1.0.0
* @access public
* @return string Returns the markup of the page.
*/
public function adminView() {
$html = '';
ob_start();
include( $this->phpPath() . '/views/page-guide.php' );
$html .= ob_get_clean();
return $html;
}
/**
* Sidebar link
*
* Link to the options screen in the admin sidebar menu.
*
* @since 1.0.0
* @access public
* @return mixed
*/
public function adminSidebar() {
// Check user role.
if ( ! checkRole( [ 'admin' ], false ) ) {
return;
}
$url = HTML_PATH_ADMIN_ROOT . 'configure-plugin/' . $this->className();
$html = sprintf(
'<a class="nav-link" href="%s"><span class="fa fa-code"></span>%s</a>',
$url,
lang()->get( 'Meta Data' )
);
return $html;
}
/**
* Head section
*
* @since 1.0.0
* @access public
* @return string Returns the head content.
*/
public function siteHead() {
$meta = "\r";
if ( $this->meta_use_std() ) {
$meta .= meta_tags_standard();
}
if ( $this->meta_use_schema() ) {
$meta .= meta_tags_schema();
}
if ( $this->meta_use_og() ) {
$meta .= meta_tags_open_graph();
}
if ( $this->meta_use_twitter() ) {
$meta .= meta_tags_twitter();
}
if ( $this->meta_use_dublin() ) {
$meta .= meta_tags_dublin_core();
}
$meta .= "\r";
if ( ! empty( $this->meta_custom() ) ) {
$meta .= $this->meta_custom();
$meta .= "\r";
}
echo $meta;
}
/**
* Site footer
*
* @since 1.0.0
* @access public
* @return string
*/
public function siteBodyEnd() {
if ( ! empty( $this->footer_scripts() ) ) {
echo $this->footer_scripts();
}
}
/**
* Title tag hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function title_tag() {
return title_tag();
}
/**
* All meta tags hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function all_meta_tags() {
$meta = meta_tags_standard();
$meta .= meta_tags_schema();
$meta .= meta_tags_open_graph();
$meta .= meta_tags_twitter();
$meta .= meta_tags_dublin_core();
return $meta;
}
/**
* Standard tags hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function standard_tags() {
return meta_tags_standard();
}
/**
* Schema tags hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function schema_tags() {
return meta_tags_schema();
}
/**
* Open Graph tags hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function open_graph_tags() {
return meta_tags_open_graph();
}
/**
* Twitter tags hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function twitter_tags() {
return meta_tags_twitter();
}
/**
* Dublin Core tags hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function dublin_core_tags() {
return meta_tags_dublin_core();
}
/**
* Language meta tag hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function meta_tag_language() {
return meta_tag_language( false );
}
/**
* Keywords meta tag hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function meta_tag_keywords() {
return meta_tag_keywords( false );
}
/**
* Title meta tag hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function meta_tag_title() {
return meta_tag_title( false );
}
/**
* Description meta tag hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function meta_tag_description() {
return meta_tag_description( false );
}
/**
* Author meta tag hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function meta_tag_author() {
return meta_tag_author( false );
}
/**
* Copyright meta tag hook
*
* @since 1.0.0
* @access public
* @return void
*/
public function meta_tag_copyright() {
return meta_tag_copyright( false );
}
/**
* Option return functions
*
* @since 1.0.0
* @access public
*/
// @return string
public function title_sep() {
// Get field value;
$sep = $this->getValue( 'title_sep' );
// Reverse some for RTL languages.
if ( is_rtl() ) {
if ( '>' === $sep ) {
$sep = '<';
}
if ( '→' === $sep ) {
$sep = '←';
}
if ( '≫' === $sep ) {
$sep = '≪';
}
}
return $sep;
}
// @return string
public function custom_sep() {
return $this->getValue( 'custom_sep' );
}
// @return string
public function loop_title() {
$default = site()->title() . ' ' . lang()->get( 'Blog' );
$setting = $this->getValue( 'loop_title' );
$separator = $this->getValue( 'title_sep' );
$loop_page = '';
if ( isset( $_GET['page'] ) && $_GET['page'] > 1 ) {
$loop_page = sprintf(
'%s %s',
lang()->get( 'Page' ),
$_GET['page']
);
$default = sprintf(
'%s %s %s',
site()->title(),
lang()->get( 'Blog' ),
$loop_page
);
if ( is_rtl() ) {
$loop_page = sprintf(
'%s %s',
$_GET['page'],
lang()->get( 'Page' )
);
$default = sprintf(
'%s %s %s',
$loop_page,
lang()->get( 'Blog' ),
site()->title()
);
}
}
if ( ! empty( $setting ) && ! ctype_space( $setting ) ) {
$setting = strip_tags( $setting );
$setting = str_replace( '{{separator}}', $separator, $setting );
$setting = str_replace( '{{site-title}}', site()->title(), $setting );
$setting = str_replace( '{{site-slogan}}', site()->slogan(), $setting );
$setting = str_replace( '{{site-description}}', site()->description(), $setting );
$setting = str_replace( '{{page-number}}', $loop_page, $setting );
return $setting;
}
return $default;
}
// @return string
public function loop_desc() {
$default = lang()->get( 'Post index for' ) . ' ' . site()->title();
$setting = $this->getValue( 'loop_desc' );
if ( ! empty( $setting ) && ! ctype_space( $setting ) ) {
return strip_tags( $this->getValue( 'loop_desc' ) );
}
return $default;
}
// @return string
public function default_ttag() {
return $this->getValue( 'default_ttag' );
}
// @return string
public function loop_ttag() {
return $this->getValue( 'loop_ttag' );
}
// @return string
public function post_ttag() {
return $this->getValue( 'post_ttag' );
}
// @return string
public function page_ttag() {
return $this->getValue( 'page_ttag' );
}
// @return string
public function cat_ttag() {
return $this->getValue( 'cat_ttag' );
}
// @return string
public function tag_ttag() {
return $this->getValue( 'tag_ttag' );
}
// @return string
public function search_ttag() {
return $this->getValue( 'search_ttag' );
}
// @return string
public function error_ttag() {
return $this->getValue( 'error_ttag' );
}
// @return string
public function meta_hook() {
return $this->getValue( 'meta_hook' );
}
// @return boolean
public function meta_noindex() {
return $this->getValue( 'meta_noindex' );
}
// @return string
public function meta_keywords() {
return $this->getValue( 'meta_keywords' );
}
// @return boolean
public function meta_use_std() {
return $this->getValue( 'meta_use_std' );
}
// @return boolean
public function meta_use_schema() {
return $this->getValue( 'meta_use_schema' );
}
// @return boolean
public function meta_use_og() {
return $this->getValue( 'meta_use_og' );
}
// @return boolean
public function meta_use_twitter() {
return $this->getValue( 'meta_use_twitter' );
}
// @return boolean
public function meta_use_dublin() {
return $this->getValue( 'meta_use_dublin' );
}
// @return string
public function meta_custom() {
return "\n" . htmlspecialchars_decode( $this->getValue( 'meta_custom' ) ) . "\n";
}
// @return string
public function footer_scripts() {
return "\n" . htmlspecialchars_decode( $this->getValue( 'footer_scripts' ) ) . "\n";
}
}