Completed
Push — develop ( 2cc0c1...ffe34c )
by David
04:16 queued 01:27
created
src/includes/class-wordlift.php 2 patches
Indentation   +1338 added lines, -1338 removed lines patch added patch discarded remove patch
@@ -29,1385 +29,1385 @@
 block discarded – undo
29 29
  */
30 30
 class Wordlift {
31 31
 
32
-	/**
33
-	 * The loader that's responsible for maintaining and registering all hooks that power
34
-	 * the plugin.
35
-	 *
36
-	 * @since    1.0.0
37
-	 * @access   protected
38
-	 * @var      Wordlift_Loader $loader Maintains and registers all hooks for the plugin.
39
-	 */
40
-	protected $loader;
41
-
42
-	/**
43
-	 * The unique identifier of this plugin.
44
-	 *
45
-	 * @since    1.0.0
46
-	 * @access   protected
47
-	 * @var      string $plugin_name The string used to uniquely identify this plugin.
48
-	 */
49
-	protected $plugin_name;
50
-
51
-	/**
52
-	 * The current version of the plugin.
53
-	 *
54
-	 * @since    1.0.0
55
-	 * @access   protected
56
-	 * @var      string $version The current version of the plugin.
57
-	 */
58
-	protected $version;
59
-
60
-	/**
61
-	 * The {@link Wordlift_Tinymce_Adapter} instance.
62
-	 *
63
-	 * @since  3.12.0
64
-	 * @access protected
65
-	 * @var \Wordlift_Tinymce_Adapter $tinymce_adapter The {@link Wordlift_Tinymce_Adapter} instance.
66
-	 */
67
-	protected $tinymce_adapter;
68
-
69
-	/**
70
-	 * The Thumbnail service.
71
-	 *
72
-	 * @since  3.1.5
73
-	 * @access private
74
-	 * @var \Wordlift_Thumbnail_Service $thumbnail_service The Thumbnail service.
75
-	 */
76
-	private $thumbnail_service;
77
-
78
-	/**
79
-	 * The UI service.
80
-	 *
81
-	 * @since  3.2.0
82
-	 * @access private
83
-	 * @var \Wordlift_UI_Service $ui_service The UI service.
84
-	 */
85
-	private $ui_service;
86
-
87
-	/**
88
-	 * The Schema service.
89
-	 *
90
-	 * @since  3.3.0
91
-	 * @access protected
92
-	 * @var \Wordlift_Schema_Service $schema_service The Schema service.
93
-	 */
94
-	protected $schema_service;
95
-
96
-	/**
97
-	 * The Entity service.
98
-	 *
99
-	 * @since  3.1.0
100
-	 * @access protected
101
-	 * @var \Wordlift_Entity_Service $entity_service The Entity service.
102
-	 */
103
-	protected $entity_service;
104
-
105
-	/**
106
-	 * The Topic Taxonomy service.
107
-	 *
108
-	 * @since  3.5.0
109
-	 * @access private
110
-	 * @var \Wordlift_Topic_Taxonomy_Service The Topic Taxonomy service.
111
-	 */
112
-	private $topic_taxonomy_service;
113
-
114
-	/**
115
-	 * The User service.
116
-	 *
117
-	 * @since  3.1.7
118
-	 * @access protected
119
-	 * @var \Wordlift_User_Service $user_service The User service.
120
-	 */
121
-	protected $user_service;
122
-
123
-	/**
124
-	 * The Timeline service.
125
-	 *
126
-	 * @since  3.1.0
127
-	 * @access private
128
-	 * @var \Wordlift_Timeline_Service $timeline_service The Timeline service.
129
-	 */
130
-	private $timeline_service;
131
-
132
-	/**
133
-	 * The Redirect service.
134
-	 *
135
-	 * @since  3.2.0
136
-	 * @access private
137
-	 * @var \Wordlift_Redirect_Service $redirect_service The Redirect service.
138
-	 */
139
-	private $redirect_service;
140
-
141
-	/**
142
-	 * The Notice service.
143
-	 *
144
-	 * @since  3.3.0
145
-	 * @access private
146
-	 * @var \Wordlift_Notice_Service $notice_service The Notice service.
147
-	 */
148
-	private $notice_service;
149
-
150
-	/**
151
-	 * The Entity list customization.
152
-	 *
153
-	 * @since  3.3.0
154
-	 * @access private
155
-	 * @var \Wordlift_Entity_List_Service $entity_list_service The Entity list service.
156
-	 */
157
-	private $entity_list_service;
158
-
159
-	/**
160
-	 * The Entity Types Taxonomy Walker.
161
-	 *
162
-	 * @since  3.1.0
163
-	 * @access private
164
-	 * @var \Wordlift_Entity_Types_Taxonomy_Walker $entity_types_taxonomy_walker The Entity Types Taxonomy Walker
165
-	 */
166
-	private $entity_types_taxonomy_walker;
167
-
168
-	/**
169
-	 * The ShareThis service.
170
-	 *
171
-	 * @since  3.2.0
172
-	 * @access private
173
-	 * @var \Wordlift_ShareThis_Service $sharethis_service The ShareThis service.
174
-	 */
175
-	private $sharethis_service;
176
-
177
-	/**
178
-	 * The PrimaShop adapter.
179
-	 *
180
-	 * @since  3.2.3
181
-	 * @access private
182
-	 * @var \Wordlift_PrimaShop_Adapter $primashop_adapter The PrimaShop adapter.
183
-	 */
184
-	private $primashop_adapter;
185
-
186
-	/**
187
-	 * The WordLift Dashboard adapter.
188
-	 *
189
-	 * @since  3.4.0
190
-	 * @access private
191
-	 * @var \Wordlift_Dashboard_Service $dashboard_service The WordLift Dashboard service;
192
-	 */
193
-	private $dashboard_service;
194
-
195
-	/**
196
-	 * The entity type service.
197
-	 *
198
-	 * @since  3.6.0
199
-	 * @access private
200
-	 * @var \Wordlift_Entity_Post_Type_Service
201
-	 */
202
-	private $entity_post_type_service;
203
-
204
-	/**
205
-	 * The entity link service used to mangle links to entities with a custom slug or even w/o a slug.
206
-	 *
207
-	 * @since  3.6.0
208
-	 * @access private
209
-	 * @var \Wordlift_Entity_Link_Service
210
-	 */
211
-	private $entity_link_service;
212
-
213
-	/**
214
-	 * A {@link Wordlift_Sparql_Service} instance.
215
-	 *
216
-	 * @var    3.6.0
217
-	 * @access protected
218
-	 * @var \Wordlift_Sparql_Service $sparql_service A {@link Wordlift_Sparql_Service} instance.
219
-	 */
220
-	protected $sparql_service;
221
-
222
-	/**
223
-	 * A {@link Wordlift_Import_Service} instance.
224
-	 *
225
-	 * @since  3.6.0
226
-	 * @access private
227
-	 * @var \Wordlift_Import_Service $import_service A {@link Wordlift_Import_Service} instance.
228
-	 */
229
-	private $import_service;
230
-
231
-	/**
232
-	 * A {@link Wordlift_Rebuild_Service} instance.
233
-	 *
234
-	 * @since  3.6.0
235
-	 * @access private
236
-	 * @var \Wordlift_Rebuild_Service $rebuild_service A {@link Wordlift_Rebuild_Service} instance.
237
-	 */
238
-	private $rebuild_service;
239
-
240
-	/**
241
-	 * A {@link Wordlift_Jsonld_Service} instance.
242
-	 *
243
-	 * @since  3.7.0
244
-	 * @access protected
245
-	 * @var \Wordlift_Jsonld_Service $jsonld_service A {@link Wordlift_Jsonld_Service} instance.
246
-	 */
247
-	protected $jsonld_service;
248
-
249
-	/**
250
-	 * A {@link Wordlift_Website_Jsonld_Converter} instance.
251
-	 *
252
-	 * @since  3.14.0
253
-	 * @access protected
254
-	 * @var \Wordlift_Website_Jsonld_Converter $jsonld_website_converter A {@link Wordlift_Website_Jsonld_Converter} instance.
255
-	 */
256
-	protected $jsonld_website_converter;
257
-
258
-	/**
259
-	 *
260
-	 * @since  3.7.0
261
-	 * @access private
262
-	 * @var \Wordlift_Property_Factory $property_factory
263
-	 */
264
-	private $property_factory;
265
-
266
-	/**
267
-	 * The 'Download Your Data' page.
268
-	 *
269
-	 * @since  3.6.0
270
-	 * @access private
271
-	 * @var \Wordlift_Admin_Download_Your_Data_Page $download_your_data_page The 'Download Your Data' page.
272
-	 */
273
-	private $download_your_data_page;
274
-
275
-	/**
276
-	 * The 'WordLift Settings' page.
277
-	 *
278
-	 * @since  3.11.0
279
-	 * @access protected
280
-	 * @var \Wordlift_Admin_Settings_Page $settings_page The 'WordLift Settings' page.
281
-	 */
282
-	protected $settings_page;
283
-
284
-	/**
285
-	 * The 'WordLift Batch analysis' page.
286
-	 *
287
-	 * @since  3.14.0
288
-	 * @access protected
289
-	 * @var \Wordlift_Batch_Analysis_Page $sbatch_analysis_page The 'WordLift batcch analysis' page.
290
-	 */
291
-	protected $batch_analysis_page;
292
-
293
-	/**
294
-	 * The install wizard page.
295
-	 *
296
-	 * @since  3.9.0
297
-	 * @access private
298
-	 * @var \Wordlift_Admin_Setup $admin_setup The Install wizard.
299
-	 */
300
-	private $admin_setup;
301
-
302
-	/**
303
-	 * The Content Filter Service hooks up to the 'the_content' filter and provides
304
-	 * linking of entities to their pages.
305
-	 *
306
-	 * @since  3.8.0
307
-	 * @access private
308
-	 * @var \Wordlift_Content_Filter_Service $content_filter_service A {@link Wordlift_Content_Filter_Service} instance.
309
-	 */
310
-	private $content_filter_service;
311
-
312
-	/**
313
-	 * A {@link Wordlift_Key_Validation_Service} instance.
314
-	 *
315
-	 * @since  3.9.0
316
-	 * @access private
317
-	 * @var Wordlift_Key_Validation_Service $key_validation_service A {@link Wordlift_Key_Validation_Service} instance.
318
-	 */
319
-	private $key_validation_service;
320
-
321
-	/**
322
-	 * A {@link Wordlift_Rating_Service} instance.
323
-	 *
324
-	 * @since  3.10.0
325
-	 * @access private
326
-	 * @var \Wordlift_Rating_Service $rating_service A {@link Wordlift_Rating_Service} instance.
327
-	 */
328
-	private $rating_service;
329
-
330
-	/**
331
-	 * A {@link Wordlift_Post_To_Jsonld_Converter} instance.
332
-	 *
333
-	 * @since  3.10.0
334
-	 * @access protected
335
-	 * @var \Wordlift_Post_To_Jsonld_Converter $post_to_jsonld_converter A {@link Wordlift_Post_To_Jsonld_Converter} instance.
336
-	 */
337
-	protected $post_to_jsonld_converter;
338
-
339
-	/**
340
-	 * A {@link Wordlift_Configuration_Service} instance.
341
-	 *
342
-	 * @since  3.10.0
343
-	 * @access protected
344
-	 * @var \Wordlift_Configuration_Service $configuration_service A {@link Wordlift_Configuration_Service} instance.
345
-	 */
346
-	protected $configuration_service;
347
-
348
-	/**
349
-	 * A {@link Wordlift_Entity_Type_Service} instance.
350
-	 *
351
-	 * @since  3.10.0
352
-	 * @access protected
353
-	 * @var \Wordlift_Entity_Type_Service $entity_type_service A {@link Wordlift_Entity_Type_Service} instance.
354
-	 */
355
-	protected $entity_type_service;
356
-
357
-	/**
358
-	 * A {@link Wordlift_Entity_Post_To_Jsonld_Converter} instance.
359
-	 *
360
-	 * @since  3.10.0
361
-	 * @access protected
362
-	 * @var \Wordlift_Entity_Post_To_Jsonld_Converter $entity_post_to_jsonld_converter A {@link Wordlift_Entity_Post_To_Jsonld_Converter} instance.
363
-	 */
364
-	protected $entity_post_to_jsonld_converter;
365
-
366
-	/**
367
-	 * A {@link Wordlift_Postid_To_Jsonld_Converter} instance.
368
-	 *
369
-	 * @since  3.10.0
370
-	 * @access protected
371
-	 * @var \Wordlift_Postid_To_Jsonld_Converter $postid_to_jsonld_converter A {@link Wordlift_Postid_To_Jsonld_Converter} instance.
372
-	 */
373
-	protected $postid_to_jsonld_converter;
374
-
375
-	/**
376
-	 * The {@link Wordlift_Admin_Status_Page} class.
377
-	 *
378
-	 * @since  3.9.8
379
-	 * @access private
380
-	 * @var \Wordlift_Admin_Status_Page $status_page The {@link Wordlift_Admin_Status_Page} class.
381
-	 */
382
-	private $status_page;
383
-
384
-	/**
385
-	 * The {@link Wordlift_Category_Taxonomy_Service} instance.
386
-	 *
387
-	 * @since  3.11.0
388
-	 * @access protected
389
-	 * @var \Wordlift_Category_Taxonomy_Service $category_taxonomy_service The {@link Wordlift_Category_Taxonomy_Service} instance.
390
-	 */
391
-	protected $category_taxonomy_service;
392
-
393
-	/**
394
-	 * The {@link Wordlift_Event_Entity_Page_Service} instance.
395
-	 *
396
-	 * @since  3.11.0
397
-	 * @access protected
398
-	 * @var \Wordlift_Event_Entity_Page_Service $event_entity_page_service The {@link Wordlift_Event_Entity_Page_Service} instance.
399
-	 */
400
-	protected $event_entity_page_service;
401
-
402
-	/**
403
-	 * The {@link Wordlift_Admin_Settings_Page_Action_Link} class.
404
-	 *
405
-	 * @since  3.11.0
406
-	 * @access protected
407
-	 * @var \Wordlift_Admin_Settings_Page_Action_Link $settings_page_action_link The {@link Wordlift_Admin_Settings_Page_Action_Link} class.
408
-	 */
409
-	protected $settings_page_action_link;
410
-
411
-	/**
412
-	 * The {@link Wordlift_Publisher_Ajax_Adapter} instance.
413
-	 *
414
-	 * @since  3.11.0
415
-	 * @access protected
416
-	 * @var \Wordlift_Publisher_Ajax_Adapter $publisher_ajax_adapter The {@link Wordlift_Publisher_Ajax_Adapter} instance.
417
-	 */
418
-	protected $publisher_ajax_adapter;
419
-
420
-	/**
421
-	 * The {@link Wordlift_Admin_Input_Element} element renderer.
422
-	 *
423
-	 * @since  3.11.0
424
-	 * @access protected
425
-	 * @var \Wordlift_Admin_Input_Element $input_element The {@link Wordlift_Admin_Input_Element} element renderer.
426
-	 */
427
-	protected $input_element;
428
-
429
-	/**
430
-	 * The {@link Wordlift_Admin_Radio_Input_Element} element renderer.
431
-	 *
432
-	 * @since  3.13.0
433
-	 * @access protected
434
-	 * @var \Wordlift_Admin_Radio_Input_Element $radio_input_element The {@link Wordlift_Admin_Radio_Input_Element} element renderer.
435
-	 */
436
-	protected $radio_input_element;
437
-
438
-	/**
439
-	 * The {@link Wordlift_Admin_Language_Select_Element} element renderer.
440
-	 *
441
-	 * @since  3.11.0
442
-	 * @access protected
443
-	 * @var \Wordlift_Admin_Language_Select_Element $language_select_element The {@link Wordlift_Admin_Language_Select_Element} element renderer.
444
-	 */
445
-	protected $language_select_element;
446
-
447
-	/**
448
-	 * The {@link Wordlift_Admin_Publisher_Element} element renderer.
449
-	 *
450
-	 * @since  3.11.0
451
-	 * @access protected
452
-	 * @var \Wordlift_Admin_Publisher_Element $publisher_element The {@link Wordlift_Admin_Publisher_Element} element renderer.
453
-	 */
454
-	protected $publisher_element;
455
-
456
-	/**
457
-	 * The {@link Wordlift_Admin_Select2_Element} element renderer.
458
-	 *
459
-	 * @since  3.11.0
460
-	 * @access protected
461
-	 * @var \Wordlift_Admin_Select2_Element $select2_element The {@link Wordlift_Admin_Select2_Element} element renderer.
462
-	 */
463
-	protected $select2_element;
464
-
465
-	/**
466
-	 * The controller for the entity type list admin page
467
-	 *
468
-	 * @since  3.11.0
469
-	 * @access private
470
-	 * @var \Wordlift_Admin_Entity_Taxonomy_List_Page $entity_type_admin_page The {@link Wordlift_Admin_Entity_Taxonomy_List_Page} class.
471
-	 */
472
-	private $entity_type_admin_page;
473
-
474
-	/**
475
-	 * The controller for the entity type settings admin page
476
-	 *
477
-	 * @since  3.11.0
478
-	 * @access private
479
-	 * @var \Wordlift_Admin_Entity_Type_Settings $entity_type_settings_admin_page The {@link Wordlift_Admin_Entity_Type_Settings} class.
480
-	 */
481
-	private $entity_type_settings_admin_page;
482
-
483
-	/**
484
-	 * The {@link Wordlift_Related_Entities_Cloud_Widget} instance.
485
-	 *
486
-	 * @since  3.11.0
487
-	 * @access protected
488
-	 * @var \Wordlift_Related_Entities_Cloud_Widget $related_entities_cloud_widget The {@link Wordlift_Related_Entities_Cloud_Widget} instance.
489
-	 */
490
-	protected $related_entities_cloud_widget;
491
-
492
-	/**
493
-	 * The {@link Wordlift_Admin_Author_Element} instance.
494
-	 *
495
-	 * @since  3.14.0
496
-	 * @access protected
497
-	 * @var \Wordlift_Admin_Author_Element $author_element The {@link Wordlift_Admin_Author_Element} instance.
498
-	 */
499
-	protected $author_element;
500
-
501
-	/**
502
-	 * The {@link Wordlift_Batch_Analysis_Service} instance.
503
-	 *
504
-	 * @since  3.14.0
505
-	 * @access protected
506
-	 * @var \Wordlift_Batch_Analysis_Service $batch_analysis_service The {@link Wordlift_Batch_Analysis_Service} instance.
507
-	 */
508
-	protected $batch_analysis_service;
509
-
510
-	/**
511
-	 * The {@link Wordlift_Sample_Data_Service} instance.
512
-	 *
513
-	 * @since  3.12.0
514
-	 * @access protected
515
-	 * @var \Wordlift_Sample_Data_Service $sample_data_service The {@link Wordlift_Sample_Data_Service} instance.
516
-	 */
517
-	protected $sample_data_service;
518
-
519
-	/**
520
-	 * The {@link Wordlift_Sample_Data_Ajax_Adapter} instance.
521
-	 *
522
-	 * @since  3.12.0
523
-	 * @access protected
524
-	 * @var \Wordlift_Sample_Data_Ajax_Adapter $sample_data_ajax_adapter The {@link Wordlift_Sample_Data_Ajax_Adapter} instance.
525
-	 */
526
-	protected $sample_data_ajax_adapter;
527
-
528
-	/**
529
-	 * The {@link Wordlift_Batch_Analysis_Adapter} instance.
530
-	 *
531
-	 * @since  3.14.2
532
-	 * @access protected
533
-	 * @var \Wordlift_Batch_Analysis_Adapter $batch_analysis_adapter The {@link Wordlift_Batch_Analysis_Adapter} instance.
534
-	 */
535
-	private $batch_analysis_adapter;
536
-
537
-	/**
538
-	 * The {@link Wordlift_Relation_Rebuild_Service} instance.
539
-	 *
540
-	 * @since  3.14.3
541
-	 * @access private
542
-	 * @var \Wordlift_Relation_Rebuild_Service $relation_rebuild_service The {@link Wordlift_Relation_Rebuild_Service} instance.
543
-	 */
544
-	private $relation_rebuild_service;
545
-
546
-	/**
547
-	 * The {@link Wordlift_Relation_Rebuild_Adapter} instance.
548
-	 *
549
-	 * @since  3.14.3
550
-	 * @access private
551
-	 * @var \Wordlift_Relation_Rebuild_Adapter $relation_rebuild_adapter The {@link Wordlift_Relation_Rebuild_Adapter} instance.
552
-	 */
553
-	private $relation_rebuild_adapter;
554
-
555
-	/**
556
-	 * {@link Wordlift}'s singleton instance.
557
-	 *
558
-	 * @since  3.15.0
559
-	 * @access protected
560
-	 * @var \Wordlift_Entity_Type_Adapter $entity_type_adapter The {@link Wordlift_Entity_Type_Adapter} instance.
561
-	 */
562
-	protected $entity_type_adapter;
563
-
564
-	/**
565
-	 * The {@link Wordlift_Linked_Data_Service} instance.
566
-	 *
567
-	 * @since  3.15.0
568
-	 * @access protected
569
-	 * @var \Wordlift_Linked_Data_Service $linked_data_service The {@link Wordlift_Linked_Data_Service} instance.
570
-	 */
571
-	protected $linked_data_service;
572
-
573
-	/**
574
-	 * The {@link Wordlift_Storage_Factory} instance.
575
-	 *
576
-	 * @since  3.15.0
577
-	 * @access protected
578
-	 * @var \Wordlift_Storage_Factory $storage_factory The {@link Wordlift_Storage_Factory} instance.
579
-	 */
580
-	protected $storage_factory;
581
-
582
-	/**
583
-	 * The {@link Wordlift_Sparql_Tuple_Rendition_Factory} instance.
584
-	 *
585
-	 * @since  3.15.0
586
-	 * @access protected
587
-	 * @var \Wordlift_Sparql_Tuple_Rendition_Factory $rendition_factory The {@link Wordlift_Sparql_Tuple_Rendition_Factory} instance.
588
-	 */
589
-	protected $rendition_factory;
590
-
591
-	/**
592
-	 * The {@link Wordlift_Relation_Service} instance.
593
-	 *
594
-	 * @since  3.15.0
595
-	 * @access private
596
-	 * @var \Wordlift_Relation_Service $relation_service The {@link Wordlift_Relation_Service} instance.
597
-	 */
598
-	private $relation_service;
599
-
600
-	/**
601
-	 * {@link Wordlift}'s singleton instance.
602
-	 *
603
-	 * @since  3.11.2
604
-	 * @access private
605
-	 * @var Wordlift $instance {@link Wordlift}'s singleton instance.
606
-	 */
607
-	private static $instance;
608
-
609
-	/**
610
-	 * Define the core functionality of the plugin.
611
-	 *
612
-	 * Set the plugin name and the plugin version that can be used throughout the plugin.
613
-	 * Load the dependencies, define the locale, and set the hooks for the admin area and
614
-	 * the public-facing side of the site.
615
-	 *
616
-	 * @since    1.0.0
617
-	 */
618
-	public function __construct() {
619
-
620
-		$this->plugin_name = 'wordlift';
621
-		$this->version     = '3.15.0-dev';
622
-		$this->load_dependencies();
623
-		$this->set_locale();
624
-		$this->define_admin_hooks();
625
-		$this->define_public_hooks();
626
-
627
-		self::$instance = $this;
628
-
629
-	}
630
-
631
-	/**
632
-	 * Get the singleton instance.
633
-	 *
634
-	 * @since 3.11.2
635
-	 *
636
-	 * @return Wordlift The {@link Wordlift} singleton instance.
637
-	 */
638
-	public static function get_instance() {
639
-
640
-		return self::$instance;
641
-	}
642
-
643
-	/**
644
-	 * Load the required dependencies for this plugin.
645
-	 *
646
-	 * Include the following files that make up the plugin:
647
-	 *
648
-	 * - Wordlift_Loader. Orchestrates the hooks of the plugin.
649
-	 * - Wordlift_i18n. Defines internationalization functionality.
650
-	 * - Wordlift_Admin. Defines all hooks for the admin area.
651
-	 * - Wordlift_Public. Defines all hooks for the public side of the site.
652
-	 *
653
-	 * Create an instance of the loader which will be used to register the hooks
654
-	 * with WordPress.
655
-	 *
656
-	 * @since    1.0.0
657
-	 * @access   private
658
-	 */
659
-	private function load_dependencies() {
660
-
661
-		/**
662
-		 * The class responsible for orchestrating the actions and filters of the
663
-		 * core plugin.
664
-		 */
665
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-loader.php';
666
-
667
-		/**
668
-		 * The class responsible for defining internationalization functionality
669
-		 * of the plugin.
670
-		 */
671
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-i18n.php';
672
-
673
-		/**
674
-		 * WordLift's supported languages.
675
-		 */
676
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-languages.php';
677
-
678
-		/**
679
-		 * Provide support functions to sanitize data.
680
-		 */
681
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sanitizer.php';
682
-
683
-		/** Services. */
684
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-log-service.php';
685
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-redirect-service.php';
686
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-configuration-service.php';
687
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-post-type-service.php';
688
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-type-service.php';
689
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-link-service.php';
690
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-linked-data-service.php';
691
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-service.php';
692
-
693
-		/**
694
-		 * The Query builder.
695
-		 */
696
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-query-builder.php';
697
-
698
-		/**
699
-		 * The Schema service.
700
-		 */
701
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-schema-service.php';
702
-
703
-		/**
704
-		 * The schema:url property service.
705
-		 */
706
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-property-service.php';
707
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-schema-url-property-service.php';
708
-
709
-		/**
710
-		 * The UI service.
711
-		 */
712
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-ui-service.php';
713
-
714
-		/**
715
-		 * The Thumbnail service.
716
-		 */
717
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-thumbnail-service.php';
718
-
719
-		/**
720
-		 * The Entity Types Taxonomy service.
721
-		 */
722
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-types-taxonomy-service.php';
723
-
724
-		/**
725
-		 * The Entity service.
726
-		 */
727
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-service.php';
728
-
729
-		// Add the entity rating service.
730
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-rating-service.php';
731
-
732
-		/**
733
-		 * The User service.
734
-		 */
735
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-user-service.php';
736
-
737
-		/**
738
-		 * The Timeline service.
739
-		 */
740
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-timeline-service.php';
741
-
742
-		/**
743
-		 * The Topic Taxonomy service.
744
-		 */
745
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-topic-taxonomy-service.php';
746
-
747
-		/**
748
-		 * The SPARQL service.
749
-		 */
750
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sparql-service.php';
751
-
752
-		/**
753
-		 * The WordLift import service.
754
-		 */
755
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-import-service.php';
756
-
757
-		/**
758
-		 * The WordLift URI service.
759
-		 */
760
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-uri-service.php';
761
-
762
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-listable.php';
763
-
764
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-property-factory.php';
765
-
766
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sample-data-service.php';
767
-
768
-		/**
769
-		 * The WordLift rebuild service, used to rebuild the remote dataset using the local data.
770
-		 */
771
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-rebuild-service.php';
772
-
773
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/properties/class-wordlift-property-getter-factory.php';
774
-
775
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-attachment-service.php';
776
-
777
-		/**
778
-		 * Load the converters.
779
-		 */
780
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/intf-wordlift-post-converter.php';
781
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-abstract-post-to-jsonld-converter.php';
782
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-postid-to-jsonld-converter.php';
783
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-post-to-jsonld-converter.php';
784
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-to-jsonld-converter.php';
785
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-jsonld-website-converter.php';
786
-
787
-		/**
788
-		 * Load the content filter.
789
-		 */
790
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-content-filter-service.php';
791
-
792
-		/*
32
+    /**
33
+     * The loader that's responsible for maintaining and registering all hooks that power
34
+     * the plugin.
35
+     *
36
+     * @since    1.0.0
37
+     * @access   protected
38
+     * @var      Wordlift_Loader $loader Maintains and registers all hooks for the plugin.
39
+     */
40
+    protected $loader;
41
+
42
+    /**
43
+     * The unique identifier of this plugin.
44
+     *
45
+     * @since    1.0.0
46
+     * @access   protected
47
+     * @var      string $plugin_name The string used to uniquely identify this plugin.
48
+     */
49
+    protected $plugin_name;
50
+
51
+    /**
52
+     * The current version of the plugin.
53
+     *
54
+     * @since    1.0.0
55
+     * @access   protected
56
+     * @var      string $version The current version of the plugin.
57
+     */
58
+    protected $version;
59
+
60
+    /**
61
+     * The {@link Wordlift_Tinymce_Adapter} instance.
62
+     *
63
+     * @since  3.12.0
64
+     * @access protected
65
+     * @var \Wordlift_Tinymce_Adapter $tinymce_adapter The {@link Wordlift_Tinymce_Adapter} instance.
66
+     */
67
+    protected $tinymce_adapter;
68
+
69
+    /**
70
+     * The Thumbnail service.
71
+     *
72
+     * @since  3.1.5
73
+     * @access private
74
+     * @var \Wordlift_Thumbnail_Service $thumbnail_service The Thumbnail service.
75
+     */
76
+    private $thumbnail_service;
77
+
78
+    /**
79
+     * The UI service.
80
+     *
81
+     * @since  3.2.0
82
+     * @access private
83
+     * @var \Wordlift_UI_Service $ui_service The UI service.
84
+     */
85
+    private $ui_service;
86
+
87
+    /**
88
+     * The Schema service.
89
+     *
90
+     * @since  3.3.0
91
+     * @access protected
92
+     * @var \Wordlift_Schema_Service $schema_service The Schema service.
93
+     */
94
+    protected $schema_service;
95
+
96
+    /**
97
+     * The Entity service.
98
+     *
99
+     * @since  3.1.0
100
+     * @access protected
101
+     * @var \Wordlift_Entity_Service $entity_service The Entity service.
102
+     */
103
+    protected $entity_service;
104
+
105
+    /**
106
+     * The Topic Taxonomy service.
107
+     *
108
+     * @since  3.5.0
109
+     * @access private
110
+     * @var \Wordlift_Topic_Taxonomy_Service The Topic Taxonomy service.
111
+     */
112
+    private $topic_taxonomy_service;
113
+
114
+    /**
115
+     * The User service.
116
+     *
117
+     * @since  3.1.7
118
+     * @access protected
119
+     * @var \Wordlift_User_Service $user_service The User service.
120
+     */
121
+    protected $user_service;
122
+
123
+    /**
124
+     * The Timeline service.
125
+     *
126
+     * @since  3.1.0
127
+     * @access private
128
+     * @var \Wordlift_Timeline_Service $timeline_service The Timeline service.
129
+     */
130
+    private $timeline_service;
131
+
132
+    /**
133
+     * The Redirect service.
134
+     *
135
+     * @since  3.2.0
136
+     * @access private
137
+     * @var \Wordlift_Redirect_Service $redirect_service The Redirect service.
138
+     */
139
+    private $redirect_service;
140
+
141
+    /**
142
+     * The Notice service.
143
+     *
144
+     * @since  3.3.0
145
+     * @access private
146
+     * @var \Wordlift_Notice_Service $notice_service The Notice service.
147
+     */
148
+    private $notice_service;
149
+
150
+    /**
151
+     * The Entity list customization.
152
+     *
153
+     * @since  3.3.0
154
+     * @access private
155
+     * @var \Wordlift_Entity_List_Service $entity_list_service The Entity list service.
156
+     */
157
+    private $entity_list_service;
158
+
159
+    /**
160
+     * The Entity Types Taxonomy Walker.
161
+     *
162
+     * @since  3.1.0
163
+     * @access private
164
+     * @var \Wordlift_Entity_Types_Taxonomy_Walker $entity_types_taxonomy_walker The Entity Types Taxonomy Walker
165
+     */
166
+    private $entity_types_taxonomy_walker;
167
+
168
+    /**
169
+     * The ShareThis service.
170
+     *
171
+     * @since  3.2.0
172
+     * @access private
173
+     * @var \Wordlift_ShareThis_Service $sharethis_service The ShareThis service.
174
+     */
175
+    private $sharethis_service;
176
+
177
+    /**
178
+     * The PrimaShop adapter.
179
+     *
180
+     * @since  3.2.3
181
+     * @access private
182
+     * @var \Wordlift_PrimaShop_Adapter $primashop_adapter The PrimaShop adapter.
183
+     */
184
+    private $primashop_adapter;
185
+
186
+    /**
187
+     * The WordLift Dashboard adapter.
188
+     *
189
+     * @since  3.4.0
190
+     * @access private
191
+     * @var \Wordlift_Dashboard_Service $dashboard_service The WordLift Dashboard service;
192
+     */
193
+    private $dashboard_service;
194
+
195
+    /**
196
+     * The entity type service.
197
+     *
198
+     * @since  3.6.0
199
+     * @access private
200
+     * @var \Wordlift_Entity_Post_Type_Service
201
+     */
202
+    private $entity_post_type_service;
203
+
204
+    /**
205
+     * The entity link service used to mangle links to entities with a custom slug or even w/o a slug.
206
+     *
207
+     * @since  3.6.0
208
+     * @access private
209
+     * @var \Wordlift_Entity_Link_Service
210
+     */
211
+    private $entity_link_service;
212
+
213
+    /**
214
+     * A {@link Wordlift_Sparql_Service} instance.
215
+     *
216
+     * @var    3.6.0
217
+     * @access protected
218
+     * @var \Wordlift_Sparql_Service $sparql_service A {@link Wordlift_Sparql_Service} instance.
219
+     */
220
+    protected $sparql_service;
221
+
222
+    /**
223
+     * A {@link Wordlift_Import_Service} instance.
224
+     *
225
+     * @since  3.6.0
226
+     * @access private
227
+     * @var \Wordlift_Import_Service $import_service A {@link Wordlift_Import_Service} instance.
228
+     */
229
+    private $import_service;
230
+
231
+    /**
232
+     * A {@link Wordlift_Rebuild_Service} instance.
233
+     *
234
+     * @since  3.6.0
235
+     * @access private
236
+     * @var \Wordlift_Rebuild_Service $rebuild_service A {@link Wordlift_Rebuild_Service} instance.
237
+     */
238
+    private $rebuild_service;
239
+
240
+    /**
241
+     * A {@link Wordlift_Jsonld_Service} instance.
242
+     *
243
+     * @since  3.7.0
244
+     * @access protected
245
+     * @var \Wordlift_Jsonld_Service $jsonld_service A {@link Wordlift_Jsonld_Service} instance.
246
+     */
247
+    protected $jsonld_service;
248
+
249
+    /**
250
+     * A {@link Wordlift_Website_Jsonld_Converter} instance.
251
+     *
252
+     * @since  3.14.0
253
+     * @access protected
254
+     * @var \Wordlift_Website_Jsonld_Converter $jsonld_website_converter A {@link Wordlift_Website_Jsonld_Converter} instance.
255
+     */
256
+    protected $jsonld_website_converter;
257
+
258
+    /**
259
+     *
260
+     * @since  3.7.0
261
+     * @access private
262
+     * @var \Wordlift_Property_Factory $property_factory
263
+     */
264
+    private $property_factory;
265
+
266
+    /**
267
+     * The 'Download Your Data' page.
268
+     *
269
+     * @since  3.6.0
270
+     * @access private
271
+     * @var \Wordlift_Admin_Download_Your_Data_Page $download_your_data_page The 'Download Your Data' page.
272
+     */
273
+    private $download_your_data_page;
274
+
275
+    /**
276
+     * The 'WordLift Settings' page.
277
+     *
278
+     * @since  3.11.0
279
+     * @access protected
280
+     * @var \Wordlift_Admin_Settings_Page $settings_page The 'WordLift Settings' page.
281
+     */
282
+    protected $settings_page;
283
+
284
+    /**
285
+     * The 'WordLift Batch analysis' page.
286
+     *
287
+     * @since  3.14.0
288
+     * @access protected
289
+     * @var \Wordlift_Batch_Analysis_Page $sbatch_analysis_page The 'WordLift batcch analysis' page.
290
+     */
291
+    protected $batch_analysis_page;
292
+
293
+    /**
294
+     * The install wizard page.
295
+     *
296
+     * @since  3.9.0
297
+     * @access private
298
+     * @var \Wordlift_Admin_Setup $admin_setup The Install wizard.
299
+     */
300
+    private $admin_setup;
301
+
302
+    /**
303
+     * The Content Filter Service hooks up to the 'the_content' filter and provides
304
+     * linking of entities to their pages.
305
+     *
306
+     * @since  3.8.0
307
+     * @access private
308
+     * @var \Wordlift_Content_Filter_Service $content_filter_service A {@link Wordlift_Content_Filter_Service} instance.
309
+     */
310
+    private $content_filter_service;
311
+
312
+    /**
313
+     * A {@link Wordlift_Key_Validation_Service} instance.
314
+     *
315
+     * @since  3.9.0
316
+     * @access private
317
+     * @var Wordlift_Key_Validation_Service $key_validation_service A {@link Wordlift_Key_Validation_Service} instance.
318
+     */
319
+    private $key_validation_service;
320
+
321
+    /**
322
+     * A {@link Wordlift_Rating_Service} instance.
323
+     *
324
+     * @since  3.10.0
325
+     * @access private
326
+     * @var \Wordlift_Rating_Service $rating_service A {@link Wordlift_Rating_Service} instance.
327
+     */
328
+    private $rating_service;
329
+
330
+    /**
331
+     * A {@link Wordlift_Post_To_Jsonld_Converter} instance.
332
+     *
333
+     * @since  3.10.0
334
+     * @access protected
335
+     * @var \Wordlift_Post_To_Jsonld_Converter $post_to_jsonld_converter A {@link Wordlift_Post_To_Jsonld_Converter} instance.
336
+     */
337
+    protected $post_to_jsonld_converter;
338
+
339
+    /**
340
+     * A {@link Wordlift_Configuration_Service} instance.
341
+     *
342
+     * @since  3.10.0
343
+     * @access protected
344
+     * @var \Wordlift_Configuration_Service $configuration_service A {@link Wordlift_Configuration_Service} instance.
345
+     */
346
+    protected $configuration_service;
347
+
348
+    /**
349
+     * A {@link Wordlift_Entity_Type_Service} instance.
350
+     *
351
+     * @since  3.10.0
352
+     * @access protected
353
+     * @var \Wordlift_Entity_Type_Service $entity_type_service A {@link Wordlift_Entity_Type_Service} instance.
354
+     */
355
+    protected $entity_type_service;
356
+
357
+    /**
358
+     * A {@link Wordlift_Entity_Post_To_Jsonld_Converter} instance.
359
+     *
360
+     * @since  3.10.0
361
+     * @access protected
362
+     * @var \Wordlift_Entity_Post_To_Jsonld_Converter $entity_post_to_jsonld_converter A {@link Wordlift_Entity_Post_To_Jsonld_Converter} instance.
363
+     */
364
+    protected $entity_post_to_jsonld_converter;
365
+
366
+    /**
367
+     * A {@link Wordlift_Postid_To_Jsonld_Converter} instance.
368
+     *
369
+     * @since  3.10.0
370
+     * @access protected
371
+     * @var \Wordlift_Postid_To_Jsonld_Converter $postid_to_jsonld_converter A {@link Wordlift_Postid_To_Jsonld_Converter} instance.
372
+     */
373
+    protected $postid_to_jsonld_converter;
374
+
375
+    /**
376
+     * The {@link Wordlift_Admin_Status_Page} class.
377
+     *
378
+     * @since  3.9.8
379
+     * @access private
380
+     * @var \Wordlift_Admin_Status_Page $status_page The {@link Wordlift_Admin_Status_Page} class.
381
+     */
382
+    private $status_page;
383
+
384
+    /**
385
+     * The {@link Wordlift_Category_Taxonomy_Service} instance.
386
+     *
387
+     * @since  3.11.0
388
+     * @access protected
389
+     * @var \Wordlift_Category_Taxonomy_Service $category_taxonomy_service The {@link Wordlift_Category_Taxonomy_Service} instance.
390
+     */
391
+    protected $category_taxonomy_service;
392
+
393
+    /**
394
+     * The {@link Wordlift_Event_Entity_Page_Service} instance.
395
+     *
396
+     * @since  3.11.0
397
+     * @access protected
398
+     * @var \Wordlift_Event_Entity_Page_Service $event_entity_page_service The {@link Wordlift_Event_Entity_Page_Service} instance.
399
+     */
400
+    protected $event_entity_page_service;
401
+
402
+    /**
403
+     * The {@link Wordlift_Admin_Settings_Page_Action_Link} class.
404
+     *
405
+     * @since  3.11.0
406
+     * @access protected
407
+     * @var \Wordlift_Admin_Settings_Page_Action_Link $settings_page_action_link The {@link Wordlift_Admin_Settings_Page_Action_Link} class.
408
+     */
409
+    protected $settings_page_action_link;
410
+
411
+    /**
412
+     * The {@link Wordlift_Publisher_Ajax_Adapter} instance.
413
+     *
414
+     * @since  3.11.0
415
+     * @access protected
416
+     * @var \Wordlift_Publisher_Ajax_Adapter $publisher_ajax_adapter The {@link Wordlift_Publisher_Ajax_Adapter} instance.
417
+     */
418
+    protected $publisher_ajax_adapter;
419
+
420
+    /**
421
+     * The {@link Wordlift_Admin_Input_Element} element renderer.
422
+     *
423
+     * @since  3.11.0
424
+     * @access protected
425
+     * @var \Wordlift_Admin_Input_Element $input_element The {@link Wordlift_Admin_Input_Element} element renderer.
426
+     */
427
+    protected $input_element;
428
+
429
+    /**
430
+     * The {@link Wordlift_Admin_Radio_Input_Element} element renderer.
431
+     *
432
+     * @since  3.13.0
433
+     * @access protected
434
+     * @var \Wordlift_Admin_Radio_Input_Element $radio_input_element The {@link Wordlift_Admin_Radio_Input_Element} element renderer.
435
+     */
436
+    protected $radio_input_element;
437
+
438
+    /**
439
+     * The {@link Wordlift_Admin_Language_Select_Element} element renderer.
440
+     *
441
+     * @since  3.11.0
442
+     * @access protected
443
+     * @var \Wordlift_Admin_Language_Select_Element $language_select_element The {@link Wordlift_Admin_Language_Select_Element} element renderer.
444
+     */
445
+    protected $language_select_element;
446
+
447
+    /**
448
+     * The {@link Wordlift_Admin_Publisher_Element} element renderer.
449
+     *
450
+     * @since  3.11.0
451
+     * @access protected
452
+     * @var \Wordlift_Admin_Publisher_Element $publisher_element The {@link Wordlift_Admin_Publisher_Element} element renderer.
453
+     */
454
+    protected $publisher_element;
455
+
456
+    /**
457
+     * The {@link Wordlift_Admin_Select2_Element} element renderer.
458
+     *
459
+     * @since  3.11.0
460
+     * @access protected
461
+     * @var \Wordlift_Admin_Select2_Element $select2_element The {@link Wordlift_Admin_Select2_Element} element renderer.
462
+     */
463
+    protected $select2_element;
464
+
465
+    /**
466
+     * The controller for the entity type list admin page
467
+     *
468
+     * @since  3.11.0
469
+     * @access private
470
+     * @var \Wordlift_Admin_Entity_Taxonomy_List_Page $entity_type_admin_page The {@link Wordlift_Admin_Entity_Taxonomy_List_Page} class.
471
+     */
472
+    private $entity_type_admin_page;
473
+
474
+    /**
475
+     * The controller for the entity type settings admin page
476
+     *
477
+     * @since  3.11.0
478
+     * @access private
479
+     * @var \Wordlift_Admin_Entity_Type_Settings $entity_type_settings_admin_page The {@link Wordlift_Admin_Entity_Type_Settings} class.
480
+     */
481
+    private $entity_type_settings_admin_page;
482
+
483
+    /**
484
+     * The {@link Wordlift_Related_Entities_Cloud_Widget} instance.
485
+     *
486
+     * @since  3.11.0
487
+     * @access protected
488
+     * @var \Wordlift_Related_Entities_Cloud_Widget $related_entities_cloud_widget The {@link Wordlift_Related_Entities_Cloud_Widget} instance.
489
+     */
490
+    protected $related_entities_cloud_widget;
491
+
492
+    /**
493
+     * The {@link Wordlift_Admin_Author_Element} instance.
494
+     *
495
+     * @since  3.14.0
496
+     * @access protected
497
+     * @var \Wordlift_Admin_Author_Element $author_element The {@link Wordlift_Admin_Author_Element} instance.
498
+     */
499
+    protected $author_element;
500
+
501
+    /**
502
+     * The {@link Wordlift_Batch_Analysis_Service} instance.
503
+     *
504
+     * @since  3.14.0
505
+     * @access protected
506
+     * @var \Wordlift_Batch_Analysis_Service $batch_analysis_service The {@link Wordlift_Batch_Analysis_Service} instance.
507
+     */
508
+    protected $batch_analysis_service;
509
+
510
+    /**
511
+     * The {@link Wordlift_Sample_Data_Service} instance.
512
+     *
513
+     * @since  3.12.0
514
+     * @access protected
515
+     * @var \Wordlift_Sample_Data_Service $sample_data_service The {@link Wordlift_Sample_Data_Service} instance.
516
+     */
517
+    protected $sample_data_service;
518
+
519
+    /**
520
+     * The {@link Wordlift_Sample_Data_Ajax_Adapter} instance.
521
+     *
522
+     * @since  3.12.0
523
+     * @access protected
524
+     * @var \Wordlift_Sample_Data_Ajax_Adapter $sample_data_ajax_adapter The {@link Wordlift_Sample_Data_Ajax_Adapter} instance.
525
+     */
526
+    protected $sample_data_ajax_adapter;
527
+
528
+    /**
529
+     * The {@link Wordlift_Batch_Analysis_Adapter} instance.
530
+     *
531
+     * @since  3.14.2
532
+     * @access protected
533
+     * @var \Wordlift_Batch_Analysis_Adapter $batch_analysis_adapter The {@link Wordlift_Batch_Analysis_Adapter} instance.
534
+     */
535
+    private $batch_analysis_adapter;
536
+
537
+    /**
538
+     * The {@link Wordlift_Relation_Rebuild_Service} instance.
539
+     *
540
+     * @since  3.14.3
541
+     * @access private
542
+     * @var \Wordlift_Relation_Rebuild_Service $relation_rebuild_service The {@link Wordlift_Relation_Rebuild_Service} instance.
543
+     */
544
+    private $relation_rebuild_service;
545
+
546
+    /**
547
+     * The {@link Wordlift_Relation_Rebuild_Adapter} instance.
548
+     *
549
+     * @since  3.14.3
550
+     * @access private
551
+     * @var \Wordlift_Relation_Rebuild_Adapter $relation_rebuild_adapter The {@link Wordlift_Relation_Rebuild_Adapter} instance.
552
+     */
553
+    private $relation_rebuild_adapter;
554
+
555
+    /**
556
+     * {@link Wordlift}'s singleton instance.
557
+     *
558
+     * @since  3.15.0
559
+     * @access protected
560
+     * @var \Wordlift_Entity_Type_Adapter $entity_type_adapter The {@link Wordlift_Entity_Type_Adapter} instance.
561
+     */
562
+    protected $entity_type_adapter;
563
+
564
+    /**
565
+     * The {@link Wordlift_Linked_Data_Service} instance.
566
+     *
567
+     * @since  3.15.0
568
+     * @access protected
569
+     * @var \Wordlift_Linked_Data_Service $linked_data_service The {@link Wordlift_Linked_Data_Service} instance.
570
+     */
571
+    protected $linked_data_service;
572
+
573
+    /**
574
+     * The {@link Wordlift_Storage_Factory} instance.
575
+     *
576
+     * @since  3.15.0
577
+     * @access protected
578
+     * @var \Wordlift_Storage_Factory $storage_factory The {@link Wordlift_Storage_Factory} instance.
579
+     */
580
+    protected $storage_factory;
581
+
582
+    /**
583
+     * The {@link Wordlift_Sparql_Tuple_Rendition_Factory} instance.
584
+     *
585
+     * @since  3.15.0
586
+     * @access protected
587
+     * @var \Wordlift_Sparql_Tuple_Rendition_Factory $rendition_factory The {@link Wordlift_Sparql_Tuple_Rendition_Factory} instance.
588
+     */
589
+    protected $rendition_factory;
590
+
591
+    /**
592
+     * The {@link Wordlift_Relation_Service} instance.
593
+     *
594
+     * @since  3.15.0
595
+     * @access private
596
+     * @var \Wordlift_Relation_Service $relation_service The {@link Wordlift_Relation_Service} instance.
597
+     */
598
+    private $relation_service;
599
+
600
+    /**
601
+     * {@link Wordlift}'s singleton instance.
602
+     *
603
+     * @since  3.11.2
604
+     * @access private
605
+     * @var Wordlift $instance {@link Wordlift}'s singleton instance.
606
+     */
607
+    private static $instance;
608
+
609
+    /**
610
+     * Define the core functionality of the plugin.
611
+     *
612
+     * Set the plugin name and the plugin version that can be used throughout the plugin.
613
+     * Load the dependencies, define the locale, and set the hooks for the admin area and
614
+     * the public-facing side of the site.
615
+     *
616
+     * @since    1.0.0
617
+     */
618
+    public function __construct() {
619
+
620
+        $this->plugin_name = 'wordlift';
621
+        $this->version     = '3.15.0-dev';
622
+        $this->load_dependencies();
623
+        $this->set_locale();
624
+        $this->define_admin_hooks();
625
+        $this->define_public_hooks();
626
+
627
+        self::$instance = $this;
628
+
629
+    }
630
+
631
+    /**
632
+     * Get the singleton instance.
633
+     *
634
+     * @since 3.11.2
635
+     *
636
+     * @return Wordlift The {@link Wordlift} singleton instance.
637
+     */
638
+    public static function get_instance() {
639
+
640
+        return self::$instance;
641
+    }
642
+
643
+    /**
644
+     * Load the required dependencies for this plugin.
645
+     *
646
+     * Include the following files that make up the plugin:
647
+     *
648
+     * - Wordlift_Loader. Orchestrates the hooks of the plugin.
649
+     * - Wordlift_i18n. Defines internationalization functionality.
650
+     * - Wordlift_Admin. Defines all hooks for the admin area.
651
+     * - Wordlift_Public. Defines all hooks for the public side of the site.
652
+     *
653
+     * Create an instance of the loader which will be used to register the hooks
654
+     * with WordPress.
655
+     *
656
+     * @since    1.0.0
657
+     * @access   private
658
+     */
659
+    private function load_dependencies() {
660
+
661
+        /**
662
+         * The class responsible for orchestrating the actions and filters of the
663
+         * core plugin.
664
+         */
665
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-loader.php';
666
+
667
+        /**
668
+         * The class responsible for defining internationalization functionality
669
+         * of the plugin.
670
+         */
671
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-i18n.php';
672
+
673
+        /**
674
+         * WordLift's supported languages.
675
+         */
676
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-languages.php';
677
+
678
+        /**
679
+         * Provide support functions to sanitize data.
680
+         */
681
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sanitizer.php';
682
+
683
+        /** Services. */
684
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-log-service.php';
685
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-redirect-service.php';
686
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-configuration-service.php';
687
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-post-type-service.php';
688
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-type-service.php';
689
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-link-service.php';
690
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-linked-data-service.php';
691
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-service.php';
692
+
693
+        /**
694
+         * The Query builder.
695
+         */
696
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-query-builder.php';
697
+
698
+        /**
699
+         * The Schema service.
700
+         */
701
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-schema-service.php';
702
+
703
+        /**
704
+         * The schema:url property service.
705
+         */
706
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-property-service.php';
707
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-schema-url-property-service.php';
708
+
709
+        /**
710
+         * The UI service.
711
+         */
712
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-ui-service.php';
713
+
714
+        /**
715
+         * The Thumbnail service.
716
+         */
717
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-thumbnail-service.php';
718
+
719
+        /**
720
+         * The Entity Types Taxonomy service.
721
+         */
722
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-types-taxonomy-service.php';
723
+
724
+        /**
725
+         * The Entity service.
726
+         */
727
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-service.php';
728
+
729
+        // Add the entity rating service.
730
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-rating-service.php';
731
+
732
+        /**
733
+         * The User service.
734
+         */
735
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-user-service.php';
736
+
737
+        /**
738
+         * The Timeline service.
739
+         */
740
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-timeline-service.php';
741
+
742
+        /**
743
+         * The Topic Taxonomy service.
744
+         */
745
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-topic-taxonomy-service.php';
746
+
747
+        /**
748
+         * The SPARQL service.
749
+         */
750
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sparql-service.php';
751
+
752
+        /**
753
+         * The WordLift import service.
754
+         */
755
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-import-service.php';
756
+
757
+        /**
758
+         * The WordLift URI service.
759
+         */
760
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-uri-service.php';
761
+
762
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-listable.php';
763
+
764
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-property-factory.php';
765
+
766
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sample-data-service.php';
767
+
768
+        /**
769
+         * The WordLift rebuild service, used to rebuild the remote dataset using the local data.
770
+         */
771
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-rebuild-service.php';
772
+
773
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/properties/class-wordlift-property-getter-factory.php';
774
+
775
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-attachment-service.php';
776
+
777
+        /**
778
+         * Load the converters.
779
+         */
780
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/intf-wordlift-post-converter.php';
781
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-abstract-post-to-jsonld-converter.php';
782
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-postid-to-jsonld-converter.php';
783
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-post-to-jsonld-converter.php';
784
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-to-jsonld-converter.php';
785
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-jsonld-website-converter.php';
786
+
787
+        /**
788
+         * Load the content filter.
789
+         */
790
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-content-filter-service.php';
791
+
792
+        /*
793 793
 		 * Load the excerpt helper.
794 794
 		 */
795
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-excerpt-helper.php';
796
-
797
-		/**
798
-		 * Load the JSON-LD service to publish entities using JSON-LD.s
799
-		 *
800
-		 * @since 3.8.0
801
-		 */
802
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-jsonld-service.php';
803
-
804
-		// The Publisher Service and the AJAX adapter.
805
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-publisher-service.php';
806
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-publisher-ajax-adapter.php';
807
-
808
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-adapter.php';
809
-
810
-		/**
811
-		 * Load the WordLift key validation service.
812
-		 */
813
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-key-validation-service.php';
814
-
815
-		// Load the `Wordlift_Category_Taxonomy_Service` class definition.
816
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-category-taxonomy-service.php';
817
-
818
-		// Load the `Wordlift_Event_Entity_Page_Service` class definition.
819
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-event-entity-page-service.php';
820
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-batch-analysis-service.php';
821
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-rebuild-service.php';
822
-
823
-		/** Linked Data. */
824
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-storage.php';
825
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-meta-storage.php';
826
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-property-storage.php';
827
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-taxonomy-storage.php';
828
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-schema-class-storage.php';
829
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-author-storage.php';
830
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-meta-uri-storage.php';
831
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-image-storage.php';
832
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-related-storage.php';
833
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-url-property-storage.php';
834
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-storage-factory.php';
835
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/rendition/class-wordlift-sparql-tuple-rendition.php';
836
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/rendition/class-wordlift-sparql-tuple-rendition-factory.php';
837
-
838
-		/** Adapters. */
839
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-tinymce-adapter.php';
840
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-newrelic-adapter.php';
841
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sample-data-ajax-adapter.php';
842
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-type-adapter.php';
843
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-batch-analysis-adapter.php';
844
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-rebuild-adapter.php';
845
-
846
-		/** Async Tasks. */
847
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/wp-async-task.php';
848
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-sparql-query-async-task.php';
849
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-batch-analysis-request-async-task.php';
850
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-batch-analysis-complete-async-task.php';
851
-
852
-		/**
853
-		 * The class responsible for defining all actions that occur in the admin area.
854
-		 */
855
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin.php';
856
-
857
-		/**
858
-		 * The class to customize the entity list admin page.
859
-		 */
860
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-entity-list.php';
861
-
862
-		/**
863
-		 * The Entity Types Taxonomy Walker (transforms checkboxes into radios).
864
-		 */
865
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-types-taxonomy-walker.php';
866
-
867
-		/**
868
-		 * The Notice service.
869
-		 */
870
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-notice-service.php';
871
-
872
-		/**
873
-		 * The PrimaShop adapter.
874
-		 */
875
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-primashop-adapter.php';
876
-
877
-		/**
878
-		 * The WordLift Dashboard service.
879
-		 */
880
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-dashboard.php';
881
-
882
-		/**
883
-		 * The admin 'Install wizard' page.
884
-		 */
885
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-setup.php';
886
-
887
-		/**
888
-		 * The WordLift entity type list admin page controller.
889
-		 */
890
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-entity-taxonomy-list-page.php';
891
-
892
-		/**
893
-		 * The WordLift entity type settings admin page controller.
894
-		 */
895
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-type-settings.php';
896
-
897
-		/**
898
-		 * The admin 'Download Your Data' page.
899
-		 */
900
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-download-your-data-page.php';
901
-
902
-		/**
903
-		 * The admin 'Download Your Data' page.
904
-		 */
905
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-download-your-data-page.php';
906
-
907
-		/**
908
-		 * The admin 'WordLift Settings' page.
909
-		 */
910
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/intf-wordlift-admin-element.php';
911
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-input-element.php';
912
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-input-radio-element.php';
913
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-select2-element.php';
914
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-language-select-element.php';
915
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-tabs-element.php';
916
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-author-element.php';
917
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-publisher-element.php';
918
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-page.php';
919
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-settings-page.php';
920
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-batch-analysis-page.php';
921
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-settings-page-action-link.php';
922
-
923
-		/** Admin Pages */
924
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-post-edit-page.php';
925
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-user-profile-page.php';
926
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-status-page.php';
927
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-type-admin-service.php';
928
-
929
-		/**
930
-		 * The class responsible for defining all actions that occur in the public-facing
931
-		 * side of the site.
932
-		 */
933
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-public.php';
934
-
935
-		/**
936
-		 * The shortcode abstract class.
937
-		 */
938
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-shortcode.php';
939
-
940
-		/**
941
-		 * The Timeline shortcode.
942
-		 */
943
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-timeline-shortcode.php';
944
-
945
-		/**
946
-		 * The Navigator shortcode.
947
-		 */
948
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-navigator-shortcode.php';
949
-
950
-		/**
951
-		 * The chord shortcode.
952
-		 */
953
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-chord-shortcode.php';
954
-
955
-		/**
956
-		 * The geomap shortcode.
957
-		 */
958
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-geomap-shortcode.php';
959
-
960
-		/**
961
-		 * The entity cloud shortcode.
962
-		 */
963
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-related-entities-cloud-shortcode.php';
964
-
965
-		/**
966
-		 * The ShareThis service.
967
-		 */
968
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-sharethis-service.php';
969
-
970
-		/**
971
-		 * The SEO service.
972
-		 */
973
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-seo-service.php';
974
-
975
-		/**
976
-		 * The AMP service.
977
-		 */
978
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-amp-service.php';
979
-
980
-		/** Widgets */
981
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-widget.php';
982
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-related-entities-cloud-widget.php';
983
-
984
-		$this->loader = new Wordlift_Loader();
985
-
986
-		// Instantiate a global logger.
987
-		global $wl_logger;
988
-		$wl_logger = Wordlift_Log_Service::get_logger( 'WordLift' );
989
-
990
-		/** Services. */
991
-		// Create the configuration service.
992
-		$this->configuration_service = new Wordlift_Configuration_Service();
993
-
994
-		// Create an entity type service instance. It'll be later bound to the init action.
995
-		$this->entity_post_type_service = new Wordlift_Entity_Post_Type_Service( Wordlift_Entity_Service::TYPE_NAME, $this->configuration_service->get_entity_base_path() );
996
-
997
-		// Create an entity link service instance. It'll be later bound to the post_type_link and pre_get_posts actions.
998
-		$this->entity_link_service = new Wordlift_Entity_Link_Service( $this->entity_post_type_service, $this->configuration_service->get_entity_base_path() );
999
-
1000
-		// Create an instance of the UI service.
1001
-		$this->ui_service = new Wordlift_UI_Service();
1002
-
1003
-		// Create an instance of the Thumbnail service. Later it'll be hooked to post meta events.
1004
-		$this->thumbnail_service = new Wordlift_Thumbnail_Service();
1005
-
1006
-		$this->sparql_service        = new Wordlift_Sparql_Service();
1007
-		$schema_url_property_service = new Wordlift_Schema_Url_Property_Service( $this->sparql_service );
1008
-		$this->notice_service        = new Wordlift_Notice_Service();
1009
-		$this->relation_service      = new Wordlift_Relation_Service();
1010
-		$this->entity_service        = new Wordlift_Entity_Service( $this->ui_service, $this->relation_service );
1011
-		$this->user_service          = new Wordlift_User_Service();
1012
-
1013
-		// Instantiate the JSON-LD service.
1014
-		$property_getter = Wordlift_Property_Getter_Factory::create( $this->entity_service );
1015
-
1016
-		/** Linked Data. */
1017
-		$this->storage_factory   = new Wordlift_Storage_Factory( $this->entity_service, $this->user_service, $property_getter );
1018
-		$this->rendition_factory = new Wordlift_Sparql_Tuple_Rendition_Factory( $this->entity_service );
1019
-
1020
-		$this->schema_service = new Wordlift_Schema_Service( $this->storage_factory, $this->rendition_factory, $this->configuration_service );
1021
-
1022
-		// Create a new instance of the Redirect service.
1023
-		$this->redirect_service    = new Wordlift_Redirect_Service( $this->entity_service );
1024
-		$this->entity_type_service = new Wordlift_Entity_Type_Service( $this->schema_service );
1025
-		$this->linked_data_service = new Wordlift_Linked_Data_Service( $this->entity_service, $this->entity_type_service, $this->schema_service, $this->sparql_service );
795
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-excerpt-helper.php';
796
+
797
+        /**
798
+         * Load the JSON-LD service to publish entities using JSON-LD.s
799
+         *
800
+         * @since 3.8.0
801
+         */
802
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-jsonld-service.php';
803
+
804
+        // The Publisher Service and the AJAX adapter.
805
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-publisher-service.php';
806
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-publisher-ajax-adapter.php';
807
+
808
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-adapter.php';
809
+
810
+        /**
811
+         * Load the WordLift key validation service.
812
+         */
813
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-key-validation-service.php';
814
+
815
+        // Load the `Wordlift_Category_Taxonomy_Service` class definition.
816
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-category-taxonomy-service.php';
817
+
818
+        // Load the `Wordlift_Event_Entity_Page_Service` class definition.
819
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-event-entity-page-service.php';
820
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-batch-analysis-service.php';
821
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-rebuild-service.php';
822
+
823
+        /** Linked Data. */
824
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-storage.php';
825
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-meta-storage.php';
826
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-property-storage.php';
827
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-taxonomy-storage.php';
828
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-schema-class-storage.php';
829
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-author-storage.php';
830
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-meta-uri-storage.php';
831
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-image-storage.php';
832
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-related-storage.php';
833
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-url-property-storage.php';
834
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-storage-factory.php';
835
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/rendition/class-wordlift-sparql-tuple-rendition.php';
836
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/rendition/class-wordlift-sparql-tuple-rendition-factory.php';
837
+
838
+        /** Adapters. */
839
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-tinymce-adapter.php';
840
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-newrelic-adapter.php';
841
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sample-data-ajax-adapter.php';
842
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-type-adapter.php';
843
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-batch-analysis-adapter.php';
844
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-rebuild-adapter.php';
845
+
846
+        /** Async Tasks. */
847
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/wp-async-task.php';
848
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-sparql-query-async-task.php';
849
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-batch-analysis-request-async-task.php';
850
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-batch-analysis-complete-async-task.php';
851
+
852
+        /**
853
+         * The class responsible for defining all actions that occur in the admin area.
854
+         */
855
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin.php';
856
+
857
+        /**
858
+         * The class to customize the entity list admin page.
859
+         */
860
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-entity-list.php';
861
+
862
+        /**
863
+         * The Entity Types Taxonomy Walker (transforms checkboxes into radios).
864
+         */
865
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-types-taxonomy-walker.php';
866
+
867
+        /**
868
+         * The Notice service.
869
+         */
870
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-notice-service.php';
871
+
872
+        /**
873
+         * The PrimaShop adapter.
874
+         */
875
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-primashop-adapter.php';
876
+
877
+        /**
878
+         * The WordLift Dashboard service.
879
+         */
880
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-dashboard.php';
881
+
882
+        /**
883
+         * The admin 'Install wizard' page.
884
+         */
885
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-setup.php';
886
+
887
+        /**
888
+         * The WordLift entity type list admin page controller.
889
+         */
890
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-entity-taxonomy-list-page.php';
891
+
892
+        /**
893
+         * The WordLift entity type settings admin page controller.
894
+         */
895
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-type-settings.php';
896
+
897
+        /**
898
+         * The admin 'Download Your Data' page.
899
+         */
900
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-download-your-data-page.php';
901
+
902
+        /**
903
+         * The admin 'Download Your Data' page.
904
+         */
905
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-download-your-data-page.php';
906
+
907
+        /**
908
+         * The admin 'WordLift Settings' page.
909
+         */
910
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/intf-wordlift-admin-element.php';
911
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-input-element.php';
912
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-input-radio-element.php';
913
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-select2-element.php';
914
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-language-select-element.php';
915
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-tabs-element.php';
916
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-author-element.php';
917
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-publisher-element.php';
918
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-page.php';
919
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-settings-page.php';
920
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-batch-analysis-page.php';
921
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-settings-page-action-link.php';
922
+
923
+        /** Admin Pages */
924
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-post-edit-page.php';
925
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-user-profile-page.php';
926
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-status-page.php';
927
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-type-admin-service.php';
928
+
929
+        /**
930
+         * The class responsible for defining all actions that occur in the public-facing
931
+         * side of the site.
932
+         */
933
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-public.php';
934
+
935
+        /**
936
+         * The shortcode abstract class.
937
+         */
938
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-shortcode.php';
939
+
940
+        /**
941
+         * The Timeline shortcode.
942
+         */
943
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-timeline-shortcode.php';
944
+
945
+        /**
946
+         * The Navigator shortcode.
947
+         */
948
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-navigator-shortcode.php';
949
+
950
+        /**
951
+         * The chord shortcode.
952
+         */
953
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-chord-shortcode.php';
954
+
955
+        /**
956
+         * The geomap shortcode.
957
+         */
958
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-geomap-shortcode.php';
959
+
960
+        /**
961
+         * The entity cloud shortcode.
962
+         */
963
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-related-entities-cloud-shortcode.php';
964
+
965
+        /**
966
+         * The ShareThis service.
967
+         */
968
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-sharethis-service.php';
969
+
970
+        /**
971
+         * The SEO service.
972
+         */
973
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-seo-service.php';
974
+
975
+        /**
976
+         * The AMP service.
977
+         */
978
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-amp-service.php';
979
+
980
+        /** Widgets */
981
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-widget.php';
982
+        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-related-entities-cloud-widget.php';
983
+
984
+        $this->loader = new Wordlift_Loader();
985
+
986
+        // Instantiate a global logger.
987
+        global $wl_logger;
988
+        $wl_logger = Wordlift_Log_Service::get_logger( 'WordLift' );
989
+
990
+        /** Services. */
991
+        // Create the configuration service.
992
+        $this->configuration_service = new Wordlift_Configuration_Service();
993
+
994
+        // Create an entity type service instance. It'll be later bound to the init action.
995
+        $this->entity_post_type_service = new Wordlift_Entity_Post_Type_Service( Wordlift_Entity_Service::TYPE_NAME, $this->configuration_service->get_entity_base_path() );
996
+
997
+        // Create an entity link service instance. It'll be later bound to the post_type_link and pre_get_posts actions.
998
+        $this->entity_link_service = new Wordlift_Entity_Link_Service( $this->entity_post_type_service, $this->configuration_service->get_entity_base_path() );
999
+
1000
+        // Create an instance of the UI service.
1001
+        $this->ui_service = new Wordlift_UI_Service();
1002
+
1003
+        // Create an instance of the Thumbnail service. Later it'll be hooked to post meta events.
1004
+        $this->thumbnail_service = new Wordlift_Thumbnail_Service();
1005
+
1006
+        $this->sparql_service        = new Wordlift_Sparql_Service();
1007
+        $schema_url_property_service = new Wordlift_Schema_Url_Property_Service( $this->sparql_service );
1008
+        $this->notice_service        = new Wordlift_Notice_Service();
1009
+        $this->relation_service      = new Wordlift_Relation_Service();
1010
+        $this->entity_service        = new Wordlift_Entity_Service( $this->ui_service, $this->relation_service );
1011
+        $this->user_service          = new Wordlift_User_Service();
1012
+
1013
+        // Instantiate the JSON-LD service.
1014
+        $property_getter = Wordlift_Property_Getter_Factory::create( $this->entity_service );
1015
+
1016
+        /** Linked Data. */
1017
+        $this->storage_factory   = new Wordlift_Storage_Factory( $this->entity_service, $this->user_service, $property_getter );
1018
+        $this->rendition_factory = new Wordlift_Sparql_Tuple_Rendition_Factory( $this->entity_service );
1019
+
1020
+        $this->schema_service = new Wordlift_Schema_Service( $this->storage_factory, $this->rendition_factory, $this->configuration_service );
1021
+
1022
+        // Create a new instance of the Redirect service.
1023
+        $this->redirect_service    = new Wordlift_Redirect_Service( $this->entity_service );
1024
+        $this->entity_type_service = new Wordlift_Entity_Type_Service( $this->schema_service );
1025
+        $this->linked_data_service = new Wordlift_Linked_Data_Service( $this->entity_service, $this->entity_type_service, $this->schema_service, $this->sparql_service );
1026 1026
 
1027
-		// Create a new instance of the Timeline service and Timeline shortcode.
1028
-		$this->timeline_service = new Wordlift_Timeline_Service( $this->entity_service, $this->entity_type_service );
1027
+        // Create a new instance of the Timeline service and Timeline shortcode.
1028
+        $this->timeline_service = new Wordlift_Timeline_Service( $this->entity_service, $this->entity_type_service );
1029 1029
 
1030
-		$this->batch_analysis_service = new Wordlift_Batch_Analysis_Service( $this, $this->configuration_service );
1030
+        $this->batch_analysis_service = new Wordlift_Batch_Analysis_Service( $this, $this->configuration_service );
1031 1031
 
1032
-		$this->entity_types_taxonomy_walker = new Wordlift_Entity_Types_Taxonomy_Walker();
1032
+        $this->entity_types_taxonomy_walker = new Wordlift_Entity_Types_Taxonomy_Walker();
1033 1033
 
1034
-		$this->topic_taxonomy_service = new Wordlift_Topic_Taxonomy_Service();
1034
+        $this->topic_taxonomy_service = new Wordlift_Topic_Taxonomy_Service();
1035 1035
 
1036
-		// Create an instance of the ShareThis service, later we hook it to the_content and the_excerpt filters.
1037
-		$this->sharethis_service = new Wordlift_ShareThis_Service();
1036
+        // Create an instance of the ShareThis service, later we hook it to the_content and the_excerpt filters.
1037
+        $this->sharethis_service = new Wordlift_ShareThis_Service();
1038 1038
 
1039
-		// Create an instance of the PrimaShop adapter.
1040
-		$this->primashop_adapter = new Wordlift_PrimaShop_Adapter();
1039
+        // Create an instance of the PrimaShop adapter.
1040
+        $this->primashop_adapter = new Wordlift_PrimaShop_Adapter();
1041 1041
 
1042
-		// Create an import service instance to hook later to WP's import function.
1043
-		$this->import_service = new Wordlift_Import_Service( $this->entity_post_type_service, $this->entity_service, $this->schema_service, $this->sparql_service, $this->configuration_service->get_dataset_uri() );
1042
+        // Create an import service instance to hook later to WP's import function.
1043
+        $this->import_service = new Wordlift_Import_Service( $this->entity_post_type_service, $this->entity_service, $this->schema_service, $this->sparql_service, $this->configuration_service->get_dataset_uri() );
1044 1044
 
1045
-		$uri_service = new Wordlift_Uri_Service( $GLOBALS['wpdb'] );
1045
+        $uri_service = new Wordlift_Uri_Service( $GLOBALS['wpdb'] );
1046 1046
 
1047
-		// Create a Rebuild Service instance, which we'll later bound to an ajax call.
1048
-		$this->rebuild_service = new Wordlift_Rebuild_Service( $this->sparql_service, $uri_service );
1047
+        // Create a Rebuild Service instance, which we'll later bound to an ajax call.
1048
+        $this->rebuild_service = new Wordlift_Rebuild_Service( $this->sparql_service, $uri_service );
1049 1049
 
1050
-		// Create the entity rating service.
1051
-		$this->rating_service = new Wordlift_Rating_Service( $this->entity_service, $this->entity_type_service, $this->notice_service );
1050
+        // Create the entity rating service.
1051
+        $this->rating_service = new Wordlift_Rating_Service( $this->entity_service, $this->entity_type_service, $this->notice_service );
1052 1052
 
1053
-		// Create entity list customization (wp-admin/edit.php)
1054
-		$this->entity_list_service = new Wordlift_Entity_List_Service( $this->rating_service );
1053
+        // Create entity list customization (wp-admin/edit.php)
1054
+        $this->entity_list_service = new Wordlift_Entity_List_Service( $this->rating_service );
1055 1055
 
1056
-		// Create a new instance of the Redirect service.
1057
-		$this->dashboard_service = new Wordlift_Dashboard_Service( $this->rating_service, $this->entity_service );
1056
+        // Create a new instance of the Redirect service.
1057
+        $this->dashboard_service = new Wordlift_Dashboard_Service( $this->rating_service, $this->entity_service );
1058 1058
 
1059
-		// Create an instance of the Publisher Service and the AJAX Adapter.
1060
-		$publisher_service      = new Wordlift_Publisher_Service();
1061
-		$this->property_factory = new Wordlift_Property_Factory( $schema_url_property_service );
1062
-		$this->property_factory->register( Wordlift_Schema_Url_Property_Service::META_KEY, $schema_url_property_service );
1059
+        // Create an instance of the Publisher Service and the AJAX Adapter.
1060
+        $publisher_service      = new Wordlift_Publisher_Service();
1061
+        $this->property_factory = new Wordlift_Property_Factory( $schema_url_property_service );
1062
+        $this->property_factory->register( Wordlift_Schema_Url_Property_Service::META_KEY, $schema_url_property_service );
1063 1063
 
1064
-		$attachment_service = new Wordlift_Attachment_Service();
1064
+        $attachment_service = new Wordlift_Attachment_Service();
1065 1065
 
1066
-		// Instantiate the JSON-LD service.
1067
-		$property_getter                       = Wordlift_Property_Getter_Factory::create( $this->entity_service );
1068
-		$this->entity_post_to_jsonld_converter = new Wordlift_Entity_Post_To_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $property_getter );
1069
-		$this->post_to_jsonld_converter        = new Wordlift_Post_To_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $this->configuration_service, $this->entity_post_to_jsonld_converter );
1070
-		$this->postid_to_jsonld_converter      = new Wordlift_Postid_To_Jsonld_Converter( $this->entity_service, $this->entity_post_to_jsonld_converter, $this->post_to_jsonld_converter );
1071
-		$this->jsonld_website_converter        = new Wordlift_Website_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $this->configuration_service, $this->entity_post_to_jsonld_converter );
1072
-		$this->jsonld_service                  = new Wordlift_Jsonld_Service( $this->entity_service, $this->postid_to_jsonld_converter, $this->jsonld_website_converter );
1066
+        // Instantiate the JSON-LD service.
1067
+        $property_getter                       = Wordlift_Property_Getter_Factory::create( $this->entity_service );
1068
+        $this->entity_post_to_jsonld_converter = new Wordlift_Entity_Post_To_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $property_getter );
1069
+        $this->post_to_jsonld_converter        = new Wordlift_Post_To_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $this->configuration_service, $this->entity_post_to_jsonld_converter );
1070
+        $this->postid_to_jsonld_converter      = new Wordlift_Postid_To_Jsonld_Converter( $this->entity_service, $this->entity_post_to_jsonld_converter, $this->post_to_jsonld_converter );
1071
+        $this->jsonld_website_converter        = new Wordlift_Website_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $this->configuration_service, $this->entity_post_to_jsonld_converter );
1072
+        $this->jsonld_service                  = new Wordlift_Jsonld_Service( $this->entity_service, $this->postid_to_jsonld_converter, $this->jsonld_website_converter );
1073 1073
 
1074
-		$this->key_validation_service   = new Wordlift_Key_Validation_Service( $this->configuration_service );
1075
-		$this->content_filter_service   = new Wordlift_Content_Filter_Service( $this->entity_service, $this->configuration_service );
1076
-		$this->relation_rebuild_service = new Wordlift_Relation_Rebuild_Service( $this->content_filter_service, $this->entity_service );
1077
-		$this->sample_data_service      = new Wordlift_Sample_Data_Service( $this->entity_type_service, $this->configuration_service );
1078
-		$this->sample_data_ajax_adapter = new Wordlift_Sample_Data_Ajax_Adapter( $this->sample_data_service );
1074
+        $this->key_validation_service   = new Wordlift_Key_Validation_Service( $this->configuration_service );
1075
+        $this->content_filter_service   = new Wordlift_Content_Filter_Service( $this->entity_service, $this->configuration_service );
1076
+        $this->relation_rebuild_service = new Wordlift_Relation_Rebuild_Service( $this->content_filter_service, $this->entity_service );
1077
+        $this->sample_data_service      = new Wordlift_Sample_Data_Service( $this->entity_type_service, $this->configuration_service );
1078
+        $this->sample_data_ajax_adapter = new Wordlift_Sample_Data_Ajax_Adapter( $this->sample_data_service );
1079 1079
 
1080
-		// Initialize the shortcodes.
1081
-		new Wordlift_Navigator_Shortcode();
1082
-		new Wordlift_Chord_Shortcode();
1083
-		new Wordlift_Geomap_Shortcode();
1084
-		new Wordlift_Timeline_Shortcode();
1085
-		new Wordlift_Related_Entities_Cloud_Shortcode( $this->relation_service );
1080
+        // Initialize the shortcodes.
1081
+        new Wordlift_Navigator_Shortcode();
1082
+        new Wordlift_Chord_Shortcode();
1083
+        new Wordlift_Geomap_Shortcode();
1084
+        new Wordlift_Timeline_Shortcode();
1085
+        new Wordlift_Related_Entities_Cloud_Shortcode( $this->relation_service );
1086 1086
 
1087
-		// Initialize the SEO service.
1088
-		new Wordlift_Seo_Service();
1087
+        // Initialize the SEO service.
1088
+        new Wordlift_Seo_Service();
1089 1089
 
1090
-		// Initialize the AMP service.
1091
-		new Wordlift_AMP_Service();
1090
+        // Initialize the AMP service.
1091
+        new Wordlift_AMP_Service();
1092 1092
 
1093
-		/** Adapters. */
1094
-		$this->entity_type_adapter      = new Wordlift_Entity_Type_Adapter( $this->entity_type_service );
1095
-		$this->publisher_ajax_adapter   = new Wordlift_Publisher_Ajax_Adapter( $publisher_service );
1096
-		$this->tinymce_adapter          = new Wordlift_Tinymce_Adapter( $this );
1097
-		$this->batch_analysis_adapter   = new Wordlift_Batch_Analysis_Adapter( $this->batch_analysis_service );
1098
-		$this->relation_rebuild_adapter = new Wordlift_Relation_Rebuild_Adapter( $this->relation_rebuild_service );
1093
+        /** Adapters. */
1094
+        $this->entity_type_adapter      = new Wordlift_Entity_Type_Adapter( $this->entity_type_service );
1095
+        $this->publisher_ajax_adapter   = new Wordlift_Publisher_Ajax_Adapter( $publisher_service );
1096
+        $this->tinymce_adapter          = new Wordlift_Tinymce_Adapter( $this );
1097
+        $this->batch_analysis_adapter   = new Wordlift_Batch_Analysis_Adapter( $this->batch_analysis_service );
1098
+        $this->relation_rebuild_adapter = new Wordlift_Relation_Rebuild_Adapter( $this->relation_rebuild_service );
1099 1099
 
1100
-		/** Async Tasks. */
1101
-		new Wordlift_Sparql_Query_Async_Task();
1102
-		new Wordlift_Batch_Analysis_Request_Async_Task();
1103
-		new Wordlift_Batch_Analysis_Complete_Async_Task();
1100
+        /** Async Tasks. */
1101
+        new Wordlift_Sparql_Query_Async_Task();
1102
+        new Wordlift_Batch_Analysis_Request_Async_Task();
1103
+        new Wordlift_Batch_Analysis_Complete_Async_Task();
1104 1104
 
1105
-		/** WordPress Admin UI. */
1105
+        /** WordPress Admin UI. */
1106 1106
 
1107
-		// UI elements.
1108
-		$this->input_element           = new Wordlift_Admin_Input_Element();
1109
-		$this->radio_input_element     = new Wordlift_Admin_Radio_Input_Element();
1110
-		$this->select2_element         = new Wordlift_Admin_Select2_Element();
1111
-		$this->language_select_element = new Wordlift_Admin_Language_Select_Element();
1112
-		$tabs_element                  = new Wordlift_Admin_Tabs_Element();
1113
-		$this->publisher_element       = new Wordlift_Admin_Publisher_Element( $this->configuration_service, $publisher_service, $tabs_element, $this->select2_element );
1114
-		$this->author_element          = new Wordlift_Admin_Author_Element( $publisher_service, $this->select2_element );
1107
+        // UI elements.
1108
+        $this->input_element           = new Wordlift_Admin_Input_Element();
1109
+        $this->radio_input_element     = new Wordlift_Admin_Radio_Input_Element();
1110
+        $this->select2_element         = new Wordlift_Admin_Select2_Element();
1111
+        $this->language_select_element = new Wordlift_Admin_Language_Select_Element();
1112
+        $tabs_element                  = new Wordlift_Admin_Tabs_Element();
1113
+        $this->publisher_element       = new Wordlift_Admin_Publisher_Element( $this->configuration_service, $publisher_service, $tabs_element, $this->select2_element );
1114
+        $this->author_element          = new Wordlift_Admin_Author_Element( $publisher_service, $this->select2_element );
1115 1115
 
1116
-		$this->settings_page             = new Wordlift_Admin_Settings_Page( $this->configuration_service, $this->entity_service, $this->input_element, $this->language_select_element, $this->publisher_element, $this->radio_input_element );
1117
-		$this->batch_analysis_page       = new Wordlift_Batch_Analysis_Page( $this->batch_analysis_service );
1118
-		$this->settings_page_action_link = new Wordlift_Admin_Settings_Page_Action_Link( $this->settings_page );
1116
+        $this->settings_page             = new Wordlift_Admin_Settings_Page( $this->configuration_service, $this->entity_service, $this->input_element, $this->language_select_element, $this->publisher_element, $this->radio_input_element );
1117
+        $this->batch_analysis_page       = new Wordlift_Batch_Analysis_Page( $this->batch_analysis_service );
1118
+        $this->settings_page_action_link = new Wordlift_Admin_Settings_Page_Action_Link( $this->settings_page );
1119 1119
 
1120
-		// Pages.
1121
-		new Wordlift_Admin_Post_Edit_Page( $this );
1122
-		new Wordlift_Entity_Type_Admin_Service();
1120
+        // Pages.
1121
+        new Wordlift_Admin_Post_Edit_Page( $this );
1122
+        new Wordlift_Entity_Type_Admin_Service();
1123 1123
 
1124
-		// create an instance of the entity type list admin page controller.
1125
-		$this->entity_type_admin_page = new Wordlift_Admin_Entity_Taxonomy_List_Page();
1124
+        // create an instance of the entity type list admin page controller.
1125
+        $this->entity_type_admin_page = new Wordlift_Admin_Entity_Taxonomy_List_Page();
1126 1126
 
1127
-		// create an instance of the entity type etting admin page controller.
1128
-		$this->entity_type_settings_admin_page = new Wordlift_Admin_Entity_Type_Settings();
1127
+        // create an instance of the entity type etting admin page controller.
1128
+        $this->entity_type_settings_admin_page = new Wordlift_Admin_Entity_Type_Settings();
1129 1129
 
1130
-		/** Widgets */
1131
-		$this->related_entities_cloud_widget = new Wordlift_Related_Entities_Cloud_Widget();
1132
-
1133
-		//** WordPress Admin */
1134
-		$this->download_your_data_page = new Wordlift_Admin_Download_Your_Data_Page( $this->configuration_service );
1135
-		$this->status_page             = new Wordlift_Admin_Status_Page( $this->entity_service, $this->sparql_service );
1136
-
1137
-		// Create an instance of the install wizard.
1138
-		$this->admin_setup = new Wordlift_Admin_Setup( $this->configuration_service, $this->key_validation_service, $this->entity_service );
1139
-
1140
-		$this->category_taxonomy_service = new Wordlift_Category_Taxonomy_Service( $this->entity_post_type_service );
1141
-
1142
-		// User Profile.
1143
-		new Wordlift_Admin_User_Profile_Page( $this->author_element, $this->user_service );
1144
-
1145
-		$this->event_entity_page_service = new Wordlift_Event_Entity_Page_Service();
1146
-
1147
-		// Load the debug service if WP is in debug mode.
1148
-		if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
1149
-			require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-debug-service.php';
1150
-			new Wordlift_Debug_Service( $this->entity_service, $uri_service );
1151
-		}
1152
-
1153
-	}
1154
-
1155
-	/**
1156
-	 * Define the locale for this plugin for internationalization.
1157
-	 *
1158
-	 * Uses the Wordlift_i18n class in order to set the domain and to register the hook
1159
-	 * with WordPress.
1160
-	 *
1161
-	 * @since    1.0.0
1162
-	 * @access   private
1163
-	 */
1164
-	private function set_locale() {
1165
-
1166
-		$plugin_i18n = new Wordlift_i18n();
1167
-		$plugin_i18n->set_domain( $this->get_plugin_name() );
1168
-
1169
-		$this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
1170
-
1171
-	}
1172
-
1173
-	/**
1174
-	 * Register all of the hooks related to the admin area functionality
1175
-	 * of the plugin.
1176
-	 *
1177
-	 * @since    1.0.0
1178
-	 * @access   private
1179
-	 */
1180
-	private function define_admin_hooks() {
1181
-
1182
-		$plugin_admin = new Wordlift_Admin(
1183
-			$this->get_plugin_name(),
1184
-			$this->get_version(),
1185
-			$this->configuration_service,
1186
-			$this->notice_service,
1187
-			$this->user_service
1188
-		);
1189
-
1190
-		$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
1191
-		$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
1192
-
1193
-		// Hook the init action to the Topic Taxonomy service.
1194
-		$this->loader->add_action( 'init', $this->topic_taxonomy_service, 'init', 0 );
1195
-
1196
-		// Hook the deleted_post_meta action to the Thumbnail service.
1197
-		$this->loader->add_action( 'deleted_post_meta', $this->thumbnail_service, 'deleted_post_meta', 10, 4 );
1198
-
1199
-		// Hook the added_post_meta action to the Thumbnail service.
1200
-		$this->loader->add_action( 'added_post_meta', $this->thumbnail_service, 'added_or_updated_post_meta', 10, 4 );
1201
-
1202
-		// Hook the updated_post_meta action to the Thumbnail service.
1203
-		$this->loader->add_action( 'updated_post_meta', $this->thumbnail_service, 'added_or_updated_post_meta', 10, 4 );
1204
-
1205
-		// Hook the AJAX wl_timeline action to the Timeline service.
1206
-		$this->loader->add_action( 'wp_ajax_wl_timeline', $this->timeline_service, 'ajax_timeline' );
1207
-
1208
-		// Register custom allowed redirect hosts.
1209
-		$this->loader->add_filter( 'allowed_redirect_hosts', $this->redirect_service, 'allowed_redirect_hosts' );
1210
-		// Hook the AJAX wordlift_redirect action to the Redirect service.
1211
-		$this->loader->add_action( 'wp_ajax_wordlift_redirect', $this->redirect_service, 'ajax_redirect' );
1212
-		// Hook the AJAX wordlift_redirect action to the Redirect service.
1213
-		$this->loader->add_action( 'wp_ajax_wordlift_get_stats', $this->dashboard_service, 'ajax_get_stats' );
1214
-		// Hook the AJAX wordlift_redirect action to the Redirect service.
1215
-		$this->loader->add_action( 'wp_dashboard_setup', $this->dashboard_service, 'add_dashboard_widgets' );
1216
-
1217
-		// Hook save_post to the entity service to update custom fields (such as alternate labels).
1218
-		// We have a priority of 9 because we want to be executed before data is sent to Redlink.
1219
-		$this->loader->add_action( 'save_post', $this->entity_service, 'save_post', 9, 3 );
1220
-		$this->loader->add_action( 'save_post', $this->rating_service, 'set_rating_for', 20, 1 );
1221
-
1222
-		$this->loader->add_action( 'edit_form_before_permalink', $this->entity_service, 'edit_form_before_permalink', 10, 1 );
1223
-		$this->loader->add_action( 'in_admin_header', $this->rating_service, 'in_admin_header' );
1224
-
1225
-		// Entity listing customization (wp-admin/edit.php)
1226
-		// Add custom columns
1227
-		$this->loader->add_filter( 'manage_entity_posts_columns', $this->entity_list_service, 'register_custom_columns' );
1228
-		// no explicit entity as it prevents handling of other post types.
1229
-		$this->loader->add_filter( 'manage_posts_custom_column', $this->entity_list_service, 'render_custom_columns', 10, 2 );
1230
-		// Add 4W selection
1231
-		$this->loader->add_action( 'restrict_manage_posts', $this->entity_list_service, 'restrict_manage_posts_classification_scope' );
1232
-		$this->loader->add_filter( 'posts_clauses', $this->entity_list_service, 'posts_clauses_classification_scope' );
1233
-		$this->loader->add_action( 'pre_get_posts', $this->entity_list_service, 'pre_get_posts' );
1234
-		$this->loader->add_action( 'load-edit.php', $this->entity_list_service, 'load_edit' );
1235
-		$this->loader->add_filter( 'wp_terms_checklist_args', $this->entity_types_taxonomy_walker, 'terms_checklist_args' );
1236
-
1237
-		// Hook the PrimaShop adapter to <em>prima_metabox_entity_header_args</em> in order to add header support for
1238
-		// entities.
1239
-		$this->loader->add_filter( 'prima_metabox_entity_header_args', $this->primashop_adapter, 'prima_metabox_entity_header_args', 10, 2 );
1240
-
1241
-		// Filter imported post meta.
1242
-		$this->loader->add_filter( 'wp_import_post_meta', $this->import_service, 'wp_import_post_meta', 10, 3 );
1243
-
1244
-		// Notify the import service when an import starts and ends.
1245
-		$this->loader->add_action( 'import_start', $this->import_service, 'import_start', 10, 0 );
1246
-		$this->loader->add_action( 'import_end', $this->import_service, 'import_end', 10, 0 );
1247
-
1248
-		// Hook the AJAX wl_rebuild action to the Rebuild Service.
1249
-		$this->loader->add_action( 'wp_ajax_wl_rebuild', $this->rebuild_service, 'rebuild' );
1250
-
1251
-		// Hook the menu to the Download Your Data page.
1252
-		$this->loader->add_action( 'admin_menu', $this->download_your_data_page, 'admin_menu', 100, 0 );
1253
-		$this->loader->add_action( 'admin_menu', $this->status_page, 'admin_menu', 100, 0 );
1254
-		$this->loader->add_action( 'admin_menu', $this->entity_type_settings_admin_page, 'admin_menu', 100, 0 );
1255
-
1256
-		// Hook the admin-ajax.php?action=wl_download_your_data&out=xyz links.
1257
-		$this->loader->add_action( 'wp_ajax_wl_download_your_data', $this->download_your_data_page, 'download_your_data', 10 );
1258
-
1259
-		// Hook the AJAX wl_jsonld action to the JSON-LD service.
1260
-		$this->loader->add_action( 'wp_ajax_wl_jsonld', $this->jsonld_service, 'get' );
1261
-
1262
-		// Hook the AJAX wl_validate_key action to the Key Validation service.
1263
-		$this->loader->add_action( 'wp_ajax_wl_validate_key', $this->key_validation_service, 'validate_key' );
1264
-
1265
-		// Hook the `admin_init` function to the Admin Setup.
1266
-		$this->loader->add_action( 'admin_init', $this->admin_setup, 'admin_init' );
1267
-
1268
-		// Hook the admin_init to the settings page.
1269
-		$this->loader->add_action( 'admin_init', $this->settings_page, 'admin_init' );
1270
-
1271
-		// Hook the menu creation on the general wordlift menu creation
1272
-		$this->loader->add_action( 'wl_admin_menu', $this->settings_page, 'admin_menu', 10, 2 );
1273
-		if ( defined( 'WORDLIFT_BATCH' ) && WORDLIFT_BATCH ) {
1274
-			// Add the functionality only if a flag is set in wp-config.php .
1275
-			$this->loader->add_action( 'wl_admin_menu', $this->batch_analysis_page, 'admin_menu', 10, 2 );
1276
-		}
1277
-
1278
-		// Hook key update.
1279
-		$this->loader->add_action( 'pre_update_option_wl_general_settings', $this->configuration_service, 'maybe_update_dataset_uri', 10, 2 );
1280
-		$this->loader->add_action( 'update_option_wl_general_settings', $this->configuration_service, 'update_key', 10, 2 );
1281
-
1282
-		// Add additional action links to the WordLift plugin in the plugins page.
1283
-		$this->loader->add_filter( 'plugin_action_links_wordlift/wordlift.php', $this->settings_page_action_link, 'action_links', 10, 1 );
1284
-
1285
-		// Hook the AJAX `wl_publisher` action name.
1286
-		$this->loader->add_action( 'wp_ajax_wl_publisher', $this->publisher_ajax_adapter, 'publisher' );
1287
-
1288
-		// Hook row actions for the entity type list admin.
1289
-		$this->loader->add_filter( 'wl_entity_type_row_actions', $this->entity_type_admin_page, 'wl_entity_type_row_actions', 10, 2 );
1290
-
1291
-		// Hook capabilities manipulation to allow access to entity type admin
1292
-		// page  on wordpress versions before 4.7.
1293
-		global $wp_version;
1294
-		if ( version_compare( $wp_version, '4.7', '<' ) ) {
1295
-			$this->loader->add_filter( 'map_meta_cap', $this->entity_type_admin_page, 'enable_admin_access_pre_47', 10, 4 );
1296
-		}
1297
-
1298
-		$this->loader->add_action( 'wp_async_wl_run_sparql_query', $this->sparql_service, 'run_sparql_query', 10, 1 );
1299
-
1300
-		/** Adapters. */
1301
-		$this->loader->add_filter( 'mce_external_plugins', $this->tinymce_adapter, 'mce_external_plugins', 10, 1 );
1302
-		$this->loader->add_action( 'wp_ajax_wl_batch_analysis_submit_auto_selected_posts', $this->batch_analysis_adapter, 'submit_auto_selected_posts', 10 );
1303
-		$this->loader->add_action( 'wp_ajax_wl_batch_analysis_submit', $this->batch_analysis_adapter, 'submit', 10 );
1304
-		$this->loader->add_action( 'wp_ajax_wl_batch_analysis_cancel', $this->batch_analysis_adapter, 'cancel', 10 );
1305
-		$this->loader->add_action( 'wp_ajax_wl_batch_analysis_clear_warning', $this->batch_analysis_adapter, 'clear_warning', 10 );
1306
-		$this->loader->add_action( 'wp_ajax_wl_relation_rebuild_process_all', $this->relation_rebuild_adapter, 'process_all', 10 );
1307
-
1308
-		$this->loader->add_action( 'wp_ajax_wl_sample_data_create', $this->sample_data_ajax_adapter, 'create' );
1309
-		$this->loader->add_action( 'wp_ajax_wl_sample_data_delete', $this->sample_data_ajax_adapter, 'delete' );
1310
-
1311
-		// Hooks to restrict multisite super admin from manipulating entity types.
1312
-		if ( is_multisite() ) {
1313
-			$this->loader->add_filter( 'map_meta_cap', $this->entity_type_admin_page, 'restrict_super_admin', 10, 4 );
1314
-		}
1315
-
1316
-	}
1317
-
1318
-	/**
1319
-	 * Register all of the hooks related to the public-facing functionality
1320
-	 * of the plugin.
1321
-	 *
1322
-	 * @since    1.0.0
1323
-	 * @access   private
1324
-	 */
1325
-	private function define_public_hooks() {
1326
-
1327
-		$plugin_public = new Wordlift_Public( $this->get_plugin_name(), $this->get_version() );
1328
-
1329
-		// Register the entity post type.
1330
-		$this->loader->add_action( 'init', $this->entity_post_type_service, 'register' );
1130
+        /** Widgets */
1131
+        $this->related_entities_cloud_widget = new Wordlift_Related_Entities_Cloud_Widget();
1132
+
1133
+        //** WordPress Admin */
1134
+        $this->download_your_data_page = new Wordlift_Admin_Download_Your_Data_Page( $this->configuration_service );
1135
+        $this->status_page             = new Wordlift_Admin_Status_Page( $this->entity_service, $this->sparql_service );
1136
+
1137
+        // Create an instance of the install wizard.
1138
+        $this->admin_setup = new Wordlift_Admin_Setup( $this->configuration_service, $this->key_validation_service, $this->entity_service );
1139
+
1140
+        $this->category_taxonomy_service = new Wordlift_Category_Taxonomy_Service( $this->entity_post_type_service );
1141
+
1142
+        // User Profile.
1143
+        new Wordlift_Admin_User_Profile_Page( $this->author_element, $this->user_service );
1144
+
1145
+        $this->event_entity_page_service = new Wordlift_Event_Entity_Page_Service();
1146
+
1147
+        // Load the debug service if WP is in debug mode.
1148
+        if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
1149
+            require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-debug-service.php';
1150
+            new Wordlift_Debug_Service( $this->entity_service, $uri_service );
1151
+        }
1152
+
1153
+    }
1154
+
1155
+    /**
1156
+     * Define the locale for this plugin for internationalization.
1157
+     *
1158
+     * Uses the Wordlift_i18n class in order to set the domain and to register the hook
1159
+     * with WordPress.
1160
+     *
1161
+     * @since    1.0.0
1162
+     * @access   private
1163
+     */
1164
+    private function set_locale() {
1165
+
1166
+        $plugin_i18n = new Wordlift_i18n();
1167
+        $plugin_i18n->set_domain( $this->get_plugin_name() );
1168
+
1169
+        $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
1170
+
1171
+    }
1172
+
1173
+    /**
1174
+     * Register all of the hooks related to the admin area functionality
1175
+     * of the plugin.
1176
+     *
1177
+     * @since    1.0.0
1178
+     * @access   private
1179
+     */
1180
+    private function define_admin_hooks() {
1181
+
1182
+        $plugin_admin = new Wordlift_Admin(
1183
+            $this->get_plugin_name(),
1184
+            $this->get_version(),
1185
+            $this->configuration_service,
1186
+            $this->notice_service,
1187
+            $this->user_service
1188
+        );
1189
+
1190
+        $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
1191
+        $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
1192
+
1193
+        // Hook the init action to the Topic Taxonomy service.
1194
+        $this->loader->add_action( 'init', $this->topic_taxonomy_service, 'init', 0 );
1195
+
1196
+        // Hook the deleted_post_meta action to the Thumbnail service.
1197
+        $this->loader->add_action( 'deleted_post_meta', $this->thumbnail_service, 'deleted_post_meta', 10, 4 );
1198
+
1199
+        // Hook the added_post_meta action to the Thumbnail service.
1200
+        $this->loader->add_action( 'added_post_meta', $this->thumbnail_service, 'added_or_updated_post_meta', 10, 4 );
1201
+
1202
+        // Hook the updated_post_meta action to the Thumbnail service.
1203
+        $this->loader->add_action( 'updated_post_meta', $this->thumbnail_service, 'added_or_updated_post_meta', 10, 4 );
1204
+
1205
+        // Hook the AJAX wl_timeline action to the Timeline service.
1206
+        $this->loader->add_action( 'wp_ajax_wl_timeline', $this->timeline_service, 'ajax_timeline' );
1207
+
1208
+        // Register custom allowed redirect hosts.
1209
+        $this->loader->add_filter( 'allowed_redirect_hosts', $this->redirect_service, 'allowed_redirect_hosts' );
1210
+        // Hook the AJAX wordlift_redirect action to the Redirect service.
1211
+        $this->loader->add_action( 'wp_ajax_wordlift_redirect', $this->redirect_service, 'ajax_redirect' );
1212
+        // Hook the AJAX wordlift_redirect action to the Redirect service.
1213
+        $this->loader->add_action( 'wp_ajax_wordlift_get_stats', $this->dashboard_service, 'ajax_get_stats' );
1214
+        // Hook the AJAX wordlift_redirect action to the Redirect service.
1215
+        $this->loader->add_action( 'wp_dashboard_setup', $this->dashboard_service, 'add_dashboard_widgets' );
1216
+
1217
+        // Hook save_post to the entity service to update custom fields (such as alternate labels).
1218
+        // We have a priority of 9 because we want to be executed before data is sent to Redlink.
1219
+        $this->loader->add_action( 'save_post', $this->entity_service, 'save_post', 9, 3 );
1220
+        $this->loader->add_action( 'save_post', $this->rating_service, 'set_rating_for', 20, 1 );
1221
+
1222
+        $this->loader->add_action( 'edit_form_before_permalink', $this->entity_service, 'edit_form_before_permalink', 10, 1 );
1223
+        $this->loader->add_action( 'in_admin_header', $this->rating_service, 'in_admin_header' );
1224
+
1225
+        // Entity listing customization (wp-admin/edit.php)
1226
+        // Add custom columns
1227
+        $this->loader->add_filter( 'manage_entity_posts_columns', $this->entity_list_service, 'register_custom_columns' );
1228
+        // no explicit entity as it prevents handling of other post types.
1229
+        $this->loader->add_filter( 'manage_posts_custom_column', $this->entity_list_service, 'render_custom_columns', 10, 2 );
1230
+        // Add 4W selection
1231
+        $this->loader->add_action( 'restrict_manage_posts', $this->entity_list_service, 'restrict_manage_posts_classification_scope' );
1232
+        $this->loader->add_filter( 'posts_clauses', $this->entity_list_service, 'posts_clauses_classification_scope' );
1233
+        $this->loader->add_action( 'pre_get_posts', $this->entity_list_service, 'pre_get_posts' );
1234
+        $this->loader->add_action( 'load-edit.php', $this->entity_list_service, 'load_edit' );
1235
+        $this->loader->add_filter( 'wp_terms_checklist_args', $this->entity_types_taxonomy_walker, 'terms_checklist_args' );
1236
+
1237
+        // Hook the PrimaShop adapter to <em>prima_metabox_entity_header_args</em> in order to add header support for
1238
+        // entities.
1239
+        $this->loader->add_filter( 'prima_metabox_entity_header_args', $this->primashop_adapter, 'prima_metabox_entity_header_args', 10, 2 );
1240
+
1241
+        // Filter imported post meta.
1242
+        $this->loader->add_filter( 'wp_import_post_meta', $this->import_service, 'wp_import_post_meta', 10, 3 );
1243
+
1244
+        // Notify the import service when an import starts and ends.
1245
+        $this->loader->add_action( 'import_start', $this->import_service, 'import_start', 10, 0 );
1246
+        $this->loader->add_action( 'import_end', $this->import_service, 'import_end', 10, 0 );
1247
+
1248
+        // Hook the AJAX wl_rebuild action to the Rebuild Service.
1249
+        $this->loader->add_action( 'wp_ajax_wl_rebuild', $this->rebuild_service, 'rebuild' );
1250
+
1251
+        // Hook the menu to the Download Your Data page.
1252
+        $this->loader->add_action( 'admin_menu', $this->download_your_data_page, 'admin_menu', 100, 0 );
1253
+        $this->loader->add_action( 'admin_menu', $this->status_page, 'admin_menu', 100, 0 );
1254
+        $this->loader->add_action( 'admin_menu', $this->entity_type_settings_admin_page, 'admin_menu', 100, 0 );
1255
+
1256
+        // Hook the admin-ajax.php?action=wl_download_your_data&out=xyz links.
1257
+        $this->loader->add_action( 'wp_ajax_wl_download_your_data', $this->download_your_data_page, 'download_your_data', 10 );
1258
+
1259
+        // Hook the AJAX wl_jsonld action to the JSON-LD service.
1260
+        $this->loader->add_action( 'wp_ajax_wl_jsonld', $this->jsonld_service, 'get' );
1261
+
1262
+        // Hook the AJAX wl_validate_key action to the Key Validation service.
1263
+        $this->loader->add_action( 'wp_ajax_wl_validate_key', $this->key_validation_service, 'validate_key' );
1264
+
1265
+        // Hook the `admin_init` function to the Admin Setup.
1266
+        $this->loader->add_action( 'admin_init', $this->admin_setup, 'admin_init' );
1267
+
1268
+        // Hook the admin_init to the settings page.
1269
+        $this->loader->add_action( 'admin_init', $this->settings_page, 'admin_init' );
1270
+
1271
+        // Hook the menu creation on the general wordlift menu creation
1272
+        $this->loader->add_action( 'wl_admin_menu', $this->settings_page, 'admin_menu', 10, 2 );
1273
+        if ( defined( 'WORDLIFT_BATCH' ) && WORDLIFT_BATCH ) {
1274
+            // Add the functionality only if a flag is set in wp-config.php .
1275
+            $this->loader->add_action( 'wl_admin_menu', $this->batch_analysis_page, 'admin_menu', 10, 2 );
1276
+        }
1277
+
1278
+        // Hook key update.
1279
+        $this->loader->add_action( 'pre_update_option_wl_general_settings', $this->configuration_service, 'maybe_update_dataset_uri', 10, 2 );
1280
+        $this->loader->add_action( 'update_option_wl_general_settings', $this->configuration_service, 'update_key', 10, 2 );
1281
+
1282
+        // Add additional action links to the WordLift plugin in the plugins page.
1283
+        $this->loader->add_filter( 'plugin_action_links_wordlift/wordlift.php', $this->settings_page_action_link, 'action_links', 10, 1 );
1284
+
1285
+        // Hook the AJAX `wl_publisher` action name.
1286
+        $this->loader->add_action( 'wp_ajax_wl_publisher', $this->publisher_ajax_adapter, 'publisher' );
1287
+
1288
+        // Hook row actions for the entity type list admin.
1289
+        $this->loader->add_filter( 'wl_entity_type_row_actions', $this->entity_type_admin_page, 'wl_entity_type_row_actions', 10, 2 );
1290
+
1291
+        // Hook capabilities manipulation to allow access to entity type admin
1292
+        // page  on wordpress versions before 4.7.
1293
+        global $wp_version;
1294
+        if ( version_compare( $wp_version, '4.7', '<' ) ) {
1295
+            $this->loader->add_filter( 'map_meta_cap', $this->entity_type_admin_page, 'enable_admin_access_pre_47', 10, 4 );
1296
+        }
1297
+
1298
+        $this->loader->add_action( 'wp_async_wl_run_sparql_query', $this->sparql_service, 'run_sparql_query', 10, 1 );
1299
+
1300
+        /** Adapters. */
1301
+        $this->loader->add_filter( 'mce_external_plugins', $this->tinymce_adapter, 'mce_external_plugins', 10, 1 );
1302
+        $this->loader->add_action( 'wp_ajax_wl_batch_analysis_submit_auto_selected_posts', $this->batch_analysis_adapter, 'submit_auto_selected_posts', 10 );
1303
+        $this->loader->add_action( 'wp_ajax_wl_batch_analysis_submit', $this->batch_analysis_adapter, 'submit', 10 );
1304
+        $this->loader->add_action( 'wp_ajax_wl_batch_analysis_cancel', $this->batch_analysis_adapter, 'cancel', 10 );
1305
+        $this->loader->add_action( 'wp_ajax_wl_batch_analysis_clear_warning', $this->batch_analysis_adapter, 'clear_warning', 10 );
1306
+        $this->loader->add_action( 'wp_ajax_wl_relation_rebuild_process_all', $this->relation_rebuild_adapter, 'process_all', 10 );
1307
+
1308
+        $this->loader->add_action( 'wp_ajax_wl_sample_data_create', $this->sample_data_ajax_adapter, 'create' );
1309
+        $this->loader->add_action( 'wp_ajax_wl_sample_data_delete', $this->sample_data_ajax_adapter, 'delete' );
1310
+
1311
+        // Hooks to restrict multisite super admin from manipulating entity types.
1312
+        if ( is_multisite() ) {
1313
+            $this->loader->add_filter( 'map_meta_cap', $this->entity_type_admin_page, 'restrict_super_admin', 10, 4 );
1314
+        }
1315
+
1316
+    }
1317
+
1318
+    /**
1319
+     * Register all of the hooks related to the public-facing functionality
1320
+     * of the plugin.
1321
+     *
1322
+     * @since    1.0.0
1323
+     * @access   private
1324
+     */
1325
+    private function define_public_hooks() {
1326
+
1327
+        $plugin_public = new Wordlift_Public( $this->get_plugin_name(), $this->get_version() );
1328
+
1329
+        // Register the entity post type.
1330
+        $this->loader->add_action( 'init', $this->entity_post_type_service, 'register' );
1331 1331
 
1332
-		// Bind the link generation and handling hooks to the entity link service.
1333
-		$this->loader->add_filter( 'post_type_link', $this->entity_link_service, 'post_type_link', 10, 4 );
1334
-		$this->loader->add_action( 'pre_get_posts', $this->entity_link_service, 'pre_get_posts', PHP_INT_MAX, 1 );
1335
-		$this->loader->add_filter( 'wp_unique_post_slug_is_bad_flat_slug', $this->entity_link_service, 'wp_unique_post_slug_is_bad_flat_slug', 10, 3 );
1336
-		$this->loader->add_filter( 'wp_unique_post_slug_is_bad_hierarchical_slug', $this->entity_link_service, 'wp_unique_post_slug_is_bad_hierarchical_slug', 10, 4 );
1332
+        // Bind the link generation and handling hooks to the entity link service.
1333
+        $this->loader->add_filter( 'post_type_link', $this->entity_link_service, 'post_type_link', 10, 4 );
1334
+        $this->loader->add_action( 'pre_get_posts', $this->entity_link_service, 'pre_get_posts', PHP_INT_MAX, 1 );
1335
+        $this->loader->add_filter( 'wp_unique_post_slug_is_bad_flat_slug', $this->entity_link_service, 'wp_unique_post_slug_is_bad_flat_slug', 10, 3 );
1336
+        $this->loader->add_filter( 'wp_unique_post_slug_is_bad_hierarchical_slug', $this->entity_link_service, 'wp_unique_post_slug_is_bad_hierarchical_slug', 10, 4 );
1337 1337
 
1338
-		$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
1339
-		$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
1338
+        $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
1339
+        $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
1340 1340
 
1341
-		// Hook the content filter service to add entity links.
1342
-		$this->loader->add_filter( 'the_content', $this->content_filter_service, 'the_content' );
1341
+        // Hook the content filter service to add entity links.
1342
+        $this->loader->add_filter( 'the_content', $this->content_filter_service, 'the_content' );
1343 1343
 
1344
-		// Hook the AJAX wl_timeline action to the Timeline service.
1345
-		$this->loader->add_action( 'wp_ajax_nopriv_wl_timeline', $this->timeline_service, 'ajax_timeline' );
1344
+        // Hook the AJAX wl_timeline action to the Timeline service.
1345
+        $this->loader->add_action( 'wp_ajax_nopriv_wl_timeline', $this->timeline_service, 'ajax_timeline' );
1346 1346
 
1347
-		// Hook the ShareThis service.
1348
-		$this->loader->add_filter( 'the_content', $this->sharethis_service, 'the_content', 99 );
1349
-		$this->loader->add_filter( 'the_excerpt', $this->sharethis_service, 'the_excerpt', 99 );
1347
+        // Hook the ShareThis service.
1348
+        $this->loader->add_filter( 'the_content', $this->sharethis_service, 'the_content', 99 );
1349
+        $this->loader->add_filter( 'the_excerpt', $this->sharethis_service, 'the_excerpt', 99 );
1350 1350
 
1351
-		// Hook the AJAX wl_jsonld action to the JSON-LD service.
1352
-		$this->loader->add_action( 'wp_ajax_nopriv_wl_jsonld', $this->jsonld_service, 'get' );
1351
+        // Hook the AJAX wl_jsonld action to the JSON-LD service.
1352
+        $this->loader->add_action( 'wp_ajax_nopriv_wl_jsonld', $this->jsonld_service, 'get' );
1353 1353
 
1354
-		// Hook the `pre_get_posts` action to the `Wordlift_Category_Taxonomy_Service`
1355
-		// in order to tweak WP's `WP_Query` to include entities in queries related
1356
-		// to categories.
1357
-		$this->loader->add_action( 'pre_get_posts', $this->category_taxonomy_service, 'pre_get_posts', 10, 1 );
1354
+        // Hook the `pre_get_posts` action to the `Wordlift_Category_Taxonomy_Service`
1355
+        // in order to tweak WP's `WP_Query` to include entities in queries related
1356
+        // to categories.
1357
+        $this->loader->add_action( 'pre_get_posts', $this->category_taxonomy_service, 'pre_get_posts', 10, 1 );
1358 1358
 
1359
-		/*
1359
+        /*
1360 1360
 		 * Hook the `pre_get_posts` action to the `Wordlift_Event_Entity_Page_Service`
1361 1361
 		 * in order to tweak WP's `WP_Query` to show event related entities in reverse
1362 1362
 		 * order of start time.
1363 1363
 		 */
1364
-		$this->loader->add_action( 'pre_get_posts', $this->event_entity_page_service, 'pre_get_posts', 10, 1 );
1365
-
1366
-		$this->loader->add_action( 'wp_async_wl_run_sparql_query', $this->sparql_service, 'run_sparql_query', 10, 1 );
1367
-
1368
-		// This hook have to run before the rating service, as otherwise the post might not be a proper entity when rating is done.
1369
-		$this->loader->add_action( 'save_post', $this->entity_type_adapter, 'save_post', 9, 3 );
1370
-
1371
-	}
1372
-
1373
-	/**
1374
-	 * Run the loader to execute all of the hooks with WordPress.
1375
-	 *
1376
-	 * @since    1.0.0
1377
-	 */
1378
-	public function run() {
1379
-		$this->loader->run();
1380
-	}
1381
-
1382
-	/**
1383
-	 * The name of the plugin used to uniquely identify it within the context of
1384
-	 * WordPress and to define internationalization functionality.
1385
-	 *
1386
-	 * @since     1.0.0
1387
-	 * @return    string    The name of the plugin.
1388
-	 */
1389
-	public function get_plugin_name() {
1390
-		return $this->plugin_name;
1391
-	}
1392
-
1393
-	/**
1394
-	 * The reference to the class that orchestrates the hooks with the plugin.
1395
-	 *
1396
-	 * @since     1.0.0
1397
-	 * @return    Wordlift_Loader    Orchestrates the hooks of the plugin.
1398
-	 */
1399
-	public function get_loader() {
1400
-		return $this->loader;
1401
-	}
1402
-
1403
-	/**
1404
-	 * Retrieve the version number of the plugin.
1405
-	 *
1406
-	 * @since     1.0.0
1407
-	 * @return    string    The version number of the plugin.
1408
-	 */
1409
-	public function get_version() {
1410
-		return $this->version;
1411
-	}
1364
+        $this->loader->add_action( 'pre_get_posts', $this->event_entity_page_service, 'pre_get_posts', 10, 1 );
1365
+
1366
+        $this->loader->add_action( 'wp_async_wl_run_sparql_query', $this->sparql_service, 'run_sparql_query', 10, 1 );
1367
+
1368
+        // This hook have to run before the rating service, as otherwise the post might not be a proper entity when rating is done.
1369
+        $this->loader->add_action( 'save_post', $this->entity_type_adapter, 'save_post', 9, 3 );
1370
+
1371
+    }
1372
+
1373
+    /**
1374
+     * Run the loader to execute all of the hooks with WordPress.
1375
+     *
1376
+     * @since    1.0.0
1377
+     */
1378
+    public function run() {
1379
+        $this->loader->run();
1380
+    }
1381
+
1382
+    /**
1383
+     * The name of the plugin used to uniquely identify it within the context of
1384
+     * WordPress and to define internationalization functionality.
1385
+     *
1386
+     * @since     1.0.0
1387
+     * @return    string    The name of the plugin.
1388
+     */
1389
+    public function get_plugin_name() {
1390
+        return $this->plugin_name;
1391
+    }
1392
+
1393
+    /**
1394
+     * The reference to the class that orchestrates the hooks with the plugin.
1395
+     *
1396
+     * @since     1.0.0
1397
+     * @return    Wordlift_Loader    Orchestrates the hooks of the plugin.
1398
+     */
1399
+    public function get_loader() {
1400
+        return $this->loader;
1401
+    }
1402
+
1403
+    /**
1404
+     * Retrieve the version number of the plugin.
1405
+     *
1406
+     * @since     1.0.0
1407
+     * @return    string    The version number of the plugin.
1408
+     */
1409
+    public function get_version() {
1410
+        return $this->version;
1411
+    }
1412 1412
 
1413 1413
 }
Please login to merge, or discard this patch.
Spacing   +241 added lines, -241 removed lines patch added patch discarded remove patch
@@ -662,340 +662,340 @@  discard block
 block discarded – undo
662 662
 		 * The class responsible for orchestrating the actions and filters of the
663 663
 		 * core plugin.
664 664
 		 */
665
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-loader.php';
665
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-loader.php';
666 666
 
667 667
 		/**
668 668
 		 * The class responsible for defining internationalization functionality
669 669
 		 * of the plugin.
670 670
 		 */
671
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-i18n.php';
671
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-i18n.php';
672 672
 
673 673
 		/**
674 674
 		 * WordLift's supported languages.
675 675
 		 */
676
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-languages.php';
676
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-languages.php';
677 677
 
678 678
 		/**
679 679
 		 * Provide support functions to sanitize data.
680 680
 		 */
681
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sanitizer.php';
681
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-sanitizer.php';
682 682
 
683 683
 		/** Services. */
684
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-log-service.php';
685
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-redirect-service.php';
686
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-configuration-service.php';
687
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-post-type-service.php';
688
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-type-service.php';
689
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-link-service.php';
690
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-linked-data-service.php';
691
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-service.php';
684
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-log-service.php';
685
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-redirect-service.php';
686
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-configuration-service.php';
687
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-entity-post-type-service.php';
688
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-entity-type-service.php';
689
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-entity-link-service.php';
690
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-linked-data-service.php';
691
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-relation-service.php';
692 692
 
693 693
 		/**
694 694
 		 * The Query builder.
695 695
 		 */
696
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-query-builder.php';
696
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-query-builder.php';
697 697
 
698 698
 		/**
699 699
 		 * The Schema service.
700 700
 		 */
701
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-schema-service.php';
701
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-schema-service.php';
702 702
 
703 703
 		/**
704 704
 		 * The schema:url property service.
705 705
 		 */
706
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-property-service.php';
707
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-schema-url-property-service.php';
706
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-property-service.php';
707
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-schema-url-property-service.php';
708 708
 
709 709
 		/**
710 710
 		 * The UI service.
711 711
 		 */
712
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-ui-service.php';
712
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-ui-service.php';
713 713
 
714 714
 		/**
715 715
 		 * The Thumbnail service.
716 716
 		 */
717
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-thumbnail-service.php';
717
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-thumbnail-service.php';
718 718
 
719 719
 		/**
720 720
 		 * The Entity Types Taxonomy service.
721 721
 		 */
722
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-types-taxonomy-service.php';
722
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-entity-types-taxonomy-service.php';
723 723
 
724 724
 		/**
725 725
 		 * The Entity service.
726 726
 		 */
727
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-service.php';
727
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-entity-service.php';
728 728
 
729 729
 		// Add the entity rating service.
730
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-rating-service.php';
730
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-rating-service.php';
731 731
 
732 732
 		/**
733 733
 		 * The User service.
734 734
 		 */
735
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-user-service.php';
735
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-user-service.php';
736 736
 
737 737
 		/**
738 738
 		 * The Timeline service.
739 739
 		 */
740
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-timeline-service.php';
740
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-timeline-service.php';
741 741
 
742 742
 		/**
743 743
 		 * The Topic Taxonomy service.
744 744
 		 */
745
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-topic-taxonomy-service.php';
745
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-topic-taxonomy-service.php';
746 746
 
747 747
 		/**
748 748
 		 * The SPARQL service.
749 749
 		 */
750
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sparql-service.php';
750
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-sparql-service.php';
751 751
 
752 752
 		/**
753 753
 		 * The WordLift import service.
754 754
 		 */
755
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-import-service.php';
755
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-import-service.php';
756 756
 
757 757
 		/**
758 758
 		 * The WordLift URI service.
759 759
 		 */
760
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-uri-service.php';
760
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-uri-service.php';
761 761
 
762
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-listable.php';
762
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-listable.php';
763 763
 
764
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-property-factory.php';
764
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-property-factory.php';
765 765
 
766
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sample-data-service.php';
766
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-sample-data-service.php';
767 767
 
768 768
 		/**
769 769
 		 * The WordLift rebuild service, used to rebuild the remote dataset using the local data.
770 770
 		 */
771
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-rebuild-service.php';
771
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-rebuild-service.php';
772 772
 
773
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/properties/class-wordlift-property-getter-factory.php';
773
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/properties/class-wordlift-property-getter-factory.php';
774 774
 
775
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-attachment-service.php';
775
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-attachment-service.php';
776 776
 
777 777
 		/**
778 778
 		 * Load the converters.
779 779
 		 */
780
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/intf-wordlift-post-converter.php';
781
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-abstract-post-to-jsonld-converter.php';
782
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-postid-to-jsonld-converter.php';
783
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-post-to-jsonld-converter.php';
784
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-to-jsonld-converter.php';
785
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-jsonld-website-converter.php';
780
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/intf-wordlift-post-converter.php';
781
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-abstract-post-to-jsonld-converter.php';
782
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-postid-to-jsonld-converter.php';
783
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-entity-post-to-jsonld-converter.php';
784
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-post-to-jsonld-converter.php';
785
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-jsonld-website-converter.php';
786 786
 
787 787
 		/**
788 788
 		 * Load the content filter.
789 789
 		 */
790
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-content-filter-service.php';
790
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-content-filter-service.php';
791 791
 
792 792
 		/*
793 793
 		 * Load the excerpt helper.
794 794
 		 */
795
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-excerpt-helper.php';
795
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-post-excerpt-helper.php';
796 796
 
797 797
 		/**
798 798
 		 * Load the JSON-LD service to publish entities using JSON-LD.s
799 799
 		 *
800 800
 		 * @since 3.8.0
801 801
 		 */
802
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-jsonld-service.php';
802
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-jsonld-service.php';
803 803
 
804 804
 		// The Publisher Service and the AJAX adapter.
805
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-publisher-service.php';
806
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-publisher-ajax-adapter.php';
805
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-publisher-service.php';
806
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-publisher-ajax-adapter.php';
807 807
 
808
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-post-adapter.php';
808
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-post-adapter.php';
809 809
 
810 810
 		/**
811 811
 		 * Load the WordLift key validation service.
812 812
 		 */
813
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-key-validation-service.php';
813
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-key-validation-service.php';
814 814
 
815 815
 		// Load the `Wordlift_Category_Taxonomy_Service` class definition.
816
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-category-taxonomy-service.php';
816
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-category-taxonomy-service.php';
817 817
 
818 818
 		// Load the `Wordlift_Event_Entity_Page_Service` class definition.
819
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-event-entity-page-service.php';
820
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-batch-analysis-service.php';
821
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-rebuild-service.php';
819
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-event-entity-page-service.php';
820
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-batch-analysis-service.php';
821
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-relation-rebuild-service.php';
822 822
 
823 823
 		/** Linked Data. */
824
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-storage.php';
825
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-meta-storage.php';
826
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-property-storage.php';
827
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-taxonomy-storage.php';
828
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-schema-class-storage.php';
829
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-author-storage.php';
830
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-meta-uri-storage.php';
831
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-image-storage.php';
832
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-post-related-storage.php';
833
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-url-property-storage.php';
834
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/storage/class-wordlift-storage-factory.php';
835
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/rendition/class-wordlift-sparql-tuple-rendition.php';
836
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/linked-data/rendition/class-wordlift-sparql-tuple-rendition-factory.php';
824
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-storage.php';
825
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-post-meta-storage.php';
826
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-post-property-storage.php';
827
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-post-taxonomy-storage.php';
828
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-post-schema-class-storage.php';
829
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-post-author-storage.php';
830
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-post-meta-uri-storage.php';
831
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-post-image-storage.php';
832
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-post-related-storage.php';
833
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-url-property-storage.php';
834
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/storage/class-wordlift-storage-factory.php';
835
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/rendition/class-wordlift-sparql-tuple-rendition.php';
836
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/linked-data/rendition/class-wordlift-sparql-tuple-rendition-factory.php';
837 837
 
838 838
 		/** Adapters. */
839
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-tinymce-adapter.php';
840
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-newrelic-adapter.php';
841
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-sample-data-ajax-adapter.php';
842
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-entity-type-adapter.php';
843
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-batch-analysis-adapter.php';
844
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-relation-rebuild-adapter.php';
839
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-tinymce-adapter.php';
840
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-newrelic-adapter.php';
841
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-sample-data-ajax-adapter.php';
842
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-entity-type-adapter.php';
843
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-batch-analysis-adapter.php';
844
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-relation-rebuild-adapter.php';
845 845
 
846 846
 		/** Async Tasks. */
847
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/wp-async-task.php';
848
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-sparql-query-async-task.php';
849
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-batch-analysis-request-async-task.php';
850
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/wp-async-task/class-wordlift-batch-analysis-complete-async-task.php';
847
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/wp-async-task/wp-async-task.php';
848
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/wp-async-task/class-wordlift-sparql-query-async-task.php';
849
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/wp-async-task/class-wordlift-batch-analysis-request-async-task.php';
850
+		require_once plugin_dir_path(dirname(__FILE__)).'includes/wp-async-task/class-wordlift-batch-analysis-complete-async-task.php';
851 851
 
852 852
 		/**
853 853
 		 * The class responsible for defining all actions that occur in the admin area.
854 854
 		 */
855
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin.php';
855
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin.php';
856 856
 
857 857
 		/**
858 858
 		 * The class to customize the entity list admin page.
859 859
 		 */
860
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-entity-list.php';
860
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-entity-list.php';
861 861
 
862 862
 		/**
863 863
 		 * The Entity Types Taxonomy Walker (transforms checkboxes into radios).
864 864
 		 */
865
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-types-taxonomy-walker.php';
865
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-entity-types-taxonomy-walker.php';
866 866
 
867 867
 		/**
868 868
 		 * The Notice service.
869 869
 		 */
870
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-notice-service.php';
870
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-notice-service.php';
871 871
 
872 872
 		/**
873 873
 		 * The PrimaShop adapter.
874 874
 		 */
875
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-primashop-adapter.php';
875
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-primashop-adapter.php';
876 876
 
877 877
 		/**
878 878
 		 * The WordLift Dashboard service.
879 879
 		 */
880
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-dashboard.php';
880
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-dashboard.php';
881 881
 
882 882
 		/**
883 883
 		 * The admin 'Install wizard' page.
884 884
 		 */
885
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-setup.php';
885
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-setup.php';
886 886
 
887 887
 		/**
888 888
 		 * The WordLift entity type list admin page controller.
889 889
 		 */
890
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-entity-taxonomy-list-page.php';
890
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-entity-taxonomy-list-page.php';
891 891
 
892 892
 		/**
893 893
 		 * The WordLift entity type settings admin page controller.
894 894
 		 */
895
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-type-settings.php';
895
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-entity-type-settings.php';
896 896
 
897 897
 		/**
898 898
 		 * The admin 'Download Your Data' page.
899 899
 		 */
900
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-download-your-data-page.php';
900
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-download-your-data-page.php';
901 901
 
902 902
 		/**
903 903
 		 * The admin 'Download Your Data' page.
904 904
 		 */
905
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-download-your-data-page.php';
905
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-download-your-data-page.php';
906 906
 
907 907
 		/**
908 908
 		 * The admin 'WordLift Settings' page.
909 909
 		 */
910
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/intf-wordlift-admin-element.php';
911
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-input-element.php';
912
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-input-radio-element.php';
913
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-select2-element.php';
914
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-language-select-element.php';
915
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-tabs-element.php';
916
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-author-element.php';
917
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-publisher-element.php';
918
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-page.php';
919
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-settings-page.php';
920
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-batch-analysis-page.php';
921
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-settings-page-action-link.php';
910
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/intf-wordlift-admin-element.php';
911
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-input-element.php';
912
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-input-radio-element.php';
913
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-select2-element.php';
914
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-language-select-element.php';
915
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-tabs-element.php';
916
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-author-element.php';
917
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-publisher-element.php';
918
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-page.php';
919
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-settings-page.php';
920
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-batch-analysis-page.php';
921
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-settings-page-action-link.php';
922 922
 
923 923
 		/** Admin Pages */
924
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-post-edit-page.php';
925
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-user-profile-page.php';
926
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-admin-status-page.php';
927
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordlift-entity-type-admin-service.php';
924
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-post-edit-page.php';
925
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-user-profile-page.php';
926
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-admin-status-page.php';
927
+		require_once plugin_dir_path(dirname(__FILE__)).'admin/class-wordlift-entity-type-admin-service.php';
928 928
 
929 929
 		/**
930 930
 		 * The class responsible for defining all actions that occur in the public-facing
931 931
 		 * side of the site.
932 932
 		 */
933
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-public.php';
933
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-public.php';
934 934
 
935 935
 		/**
936 936
 		 * The shortcode abstract class.
937 937
 		 */
938
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-shortcode.php';
938
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-shortcode.php';
939 939
 
940 940
 		/**
941 941
 		 * The Timeline shortcode.
942 942
 		 */
943
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-timeline-shortcode.php';
943
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-timeline-shortcode.php';
944 944
 
945 945
 		/**
946 946
 		 * The Navigator shortcode.
947 947
 		 */
948
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-navigator-shortcode.php';
948
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-navigator-shortcode.php';
949 949
 
950 950
 		/**
951 951
 		 * The chord shortcode.
952 952
 		 */
953
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-chord-shortcode.php';
953
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-chord-shortcode.php';
954 954
 
955 955
 		/**
956 956
 		 * The geomap shortcode.
957 957
 		 */
958
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-geomap-shortcode.php';
958
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-geomap-shortcode.php';
959 959
 
960 960
 		/**
961 961
 		 * The entity cloud shortcode.
962 962
 		 */
963
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-related-entities-cloud-shortcode.php';
963
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-related-entities-cloud-shortcode.php';
964 964
 
965 965
 		/**
966 966
 		 * The ShareThis service.
967 967
 		 */
968
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-sharethis-service.php';
968
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-sharethis-service.php';
969 969
 
970 970
 		/**
971 971
 		 * The SEO service.
972 972
 		 */
973
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-seo-service.php';
973
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-seo-service.php';
974 974
 
975 975
 		/**
976 976
 		 * The AMP service.
977 977
 		 */
978
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-amp-service.php';
978
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-amp-service.php';
979 979
 
980 980
 		/** Widgets */
981
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-widget.php';
982
-		require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordlift-related-entities-cloud-widget.php';
981
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-widget.php';
982
+		require_once plugin_dir_path(dirname(__FILE__)).'public/class-wordlift-related-entities-cloud-widget.php';
983 983
 
984 984
 		$this->loader = new Wordlift_Loader();
985 985
 
986 986
 		// Instantiate a global logger.
987 987
 		global $wl_logger;
988
-		$wl_logger = Wordlift_Log_Service::get_logger( 'WordLift' );
988
+		$wl_logger = Wordlift_Log_Service::get_logger('WordLift');
989 989
 
990 990
 		/** Services. */
991 991
 		// Create the configuration service.
992 992
 		$this->configuration_service = new Wordlift_Configuration_Service();
993 993
 
994 994
 		// Create an entity type service instance. It'll be later bound to the init action.
995
-		$this->entity_post_type_service = new Wordlift_Entity_Post_Type_Service( Wordlift_Entity_Service::TYPE_NAME, $this->configuration_service->get_entity_base_path() );
995
+		$this->entity_post_type_service = new Wordlift_Entity_Post_Type_Service(Wordlift_Entity_Service::TYPE_NAME, $this->configuration_service->get_entity_base_path());
996 996
 
997 997
 		// Create an entity link service instance. It'll be later bound to the post_type_link and pre_get_posts actions.
998
-		$this->entity_link_service = new Wordlift_Entity_Link_Service( $this->entity_post_type_service, $this->configuration_service->get_entity_base_path() );
998
+		$this->entity_link_service = new Wordlift_Entity_Link_Service($this->entity_post_type_service, $this->configuration_service->get_entity_base_path());
999 999
 
1000 1000
 		// Create an instance of the UI service.
1001 1001
 		$this->ui_service = new Wordlift_UI_Service();
@@ -1004,30 +1004,30 @@  discard block
 block discarded – undo
1004 1004
 		$this->thumbnail_service = new Wordlift_Thumbnail_Service();
1005 1005
 
1006 1006
 		$this->sparql_service        = new Wordlift_Sparql_Service();
1007
-		$schema_url_property_service = new Wordlift_Schema_Url_Property_Service( $this->sparql_service );
1007
+		$schema_url_property_service = new Wordlift_Schema_Url_Property_Service($this->sparql_service);
1008 1008
 		$this->notice_service        = new Wordlift_Notice_Service();
1009 1009
 		$this->relation_service      = new Wordlift_Relation_Service();
1010
-		$this->entity_service        = new Wordlift_Entity_Service( $this->ui_service, $this->relation_service );
1010
+		$this->entity_service        = new Wordlift_Entity_Service($this->ui_service, $this->relation_service);
1011 1011
 		$this->user_service          = new Wordlift_User_Service();
1012 1012
 
1013 1013
 		// Instantiate the JSON-LD service.
1014
-		$property_getter = Wordlift_Property_Getter_Factory::create( $this->entity_service );
1014
+		$property_getter = Wordlift_Property_Getter_Factory::create($this->entity_service);
1015 1015
 
1016 1016
 		/** Linked Data. */
1017
-		$this->storage_factory   = new Wordlift_Storage_Factory( $this->entity_service, $this->user_service, $property_getter );
1018
-		$this->rendition_factory = new Wordlift_Sparql_Tuple_Rendition_Factory( $this->entity_service );
1017
+		$this->storage_factory   = new Wordlift_Storage_Factory($this->entity_service, $this->user_service, $property_getter);
1018
+		$this->rendition_factory = new Wordlift_Sparql_Tuple_Rendition_Factory($this->entity_service);
1019 1019
 
1020
-		$this->schema_service = new Wordlift_Schema_Service( $this->storage_factory, $this->rendition_factory, $this->configuration_service );
1020
+		$this->schema_service = new Wordlift_Schema_Service($this->storage_factory, $this->rendition_factory, $this->configuration_service);
1021 1021
 
1022 1022
 		// Create a new instance of the Redirect service.
1023
-		$this->redirect_service    = new Wordlift_Redirect_Service( $this->entity_service );
1024
-		$this->entity_type_service = new Wordlift_Entity_Type_Service( $this->schema_service );
1025
-		$this->linked_data_service = new Wordlift_Linked_Data_Service( $this->entity_service, $this->entity_type_service, $this->schema_service, $this->sparql_service );
1023
+		$this->redirect_service    = new Wordlift_Redirect_Service($this->entity_service);
1024
+		$this->entity_type_service = new Wordlift_Entity_Type_Service($this->schema_service);
1025
+		$this->linked_data_service = new Wordlift_Linked_Data_Service($this->entity_service, $this->entity_type_service, $this->schema_service, $this->sparql_service);
1026 1026
 
1027 1027
 		// Create a new instance of the Timeline service and Timeline shortcode.
1028
-		$this->timeline_service = new Wordlift_Timeline_Service( $this->entity_service, $this->entity_type_service );
1028
+		$this->timeline_service = new Wordlift_Timeline_Service($this->entity_service, $this->entity_type_service);
1029 1029
 
1030
-		$this->batch_analysis_service = new Wordlift_Batch_Analysis_Service( $this, $this->configuration_service );
1030
+		$this->batch_analysis_service = new Wordlift_Batch_Analysis_Service($this, $this->configuration_service);
1031 1031
 
1032 1032
 		$this->entity_types_taxonomy_walker = new Wordlift_Entity_Types_Taxonomy_Walker();
1033 1033
 
@@ -1040,49 +1040,49 @@  discard block
 block discarded – undo
1040 1040
 		$this->primashop_adapter = new Wordlift_PrimaShop_Adapter();
1041 1041
 
1042 1042
 		// Create an import service instance to hook later to WP's import function.
1043
-		$this->import_service = new Wordlift_Import_Service( $this->entity_post_type_service, $this->entity_service, $this->schema_service, $this->sparql_service, $this->configuration_service->get_dataset_uri() );
1043
+		$this->import_service = new Wordlift_Import_Service($this->entity_post_type_service, $this->entity_service, $this->schema_service, $this->sparql_service, $this->configuration_service->get_dataset_uri());
1044 1044
 
1045
-		$uri_service = new Wordlift_Uri_Service( $GLOBALS['wpdb'] );
1045
+		$uri_service = new Wordlift_Uri_Service($GLOBALS['wpdb']);
1046 1046
 
1047 1047
 		// Create a Rebuild Service instance, which we'll later bound to an ajax call.
1048
-		$this->rebuild_service = new Wordlift_Rebuild_Service( $this->sparql_service, $uri_service );
1048
+		$this->rebuild_service = new Wordlift_Rebuild_Service($this->sparql_service, $uri_service);
1049 1049
 
1050 1050
 		// Create the entity rating service.
1051
-		$this->rating_service = new Wordlift_Rating_Service( $this->entity_service, $this->entity_type_service, $this->notice_service );
1051
+		$this->rating_service = new Wordlift_Rating_Service($this->entity_service, $this->entity_type_service, $this->notice_service);
1052 1052
 
1053 1053
 		// Create entity list customization (wp-admin/edit.php)
1054
-		$this->entity_list_service = new Wordlift_Entity_List_Service( $this->rating_service );
1054
+		$this->entity_list_service = new Wordlift_Entity_List_Service($this->rating_service);
1055 1055
 
1056 1056
 		// Create a new instance of the Redirect service.
1057
-		$this->dashboard_service = new Wordlift_Dashboard_Service( $this->rating_service, $this->entity_service );
1057
+		$this->dashboard_service = new Wordlift_Dashboard_Service($this->rating_service, $this->entity_service);
1058 1058
 
1059 1059
 		// Create an instance of the Publisher Service and the AJAX Adapter.
1060 1060
 		$publisher_service      = new Wordlift_Publisher_Service();
1061
-		$this->property_factory = new Wordlift_Property_Factory( $schema_url_property_service );
1062
-		$this->property_factory->register( Wordlift_Schema_Url_Property_Service::META_KEY, $schema_url_property_service );
1061
+		$this->property_factory = new Wordlift_Property_Factory($schema_url_property_service);
1062
+		$this->property_factory->register(Wordlift_Schema_Url_Property_Service::META_KEY, $schema_url_property_service);
1063 1063
 
1064 1064
 		$attachment_service = new Wordlift_Attachment_Service();
1065 1065
 
1066 1066
 		// Instantiate the JSON-LD service.
1067
-		$property_getter                       = Wordlift_Property_Getter_Factory::create( $this->entity_service );
1068
-		$this->entity_post_to_jsonld_converter = new Wordlift_Entity_Post_To_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $property_getter );
1069
-		$this->post_to_jsonld_converter        = new Wordlift_Post_To_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $this->configuration_service, $this->entity_post_to_jsonld_converter );
1070
-		$this->postid_to_jsonld_converter      = new Wordlift_Postid_To_Jsonld_Converter( $this->entity_service, $this->entity_post_to_jsonld_converter, $this->post_to_jsonld_converter );
1071
-		$this->jsonld_website_converter        = new Wordlift_Website_Jsonld_Converter( $this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $this->configuration_service, $this->entity_post_to_jsonld_converter );
1072
-		$this->jsonld_service                  = new Wordlift_Jsonld_Service( $this->entity_service, $this->postid_to_jsonld_converter, $this->jsonld_website_converter );
1073
-
1074
-		$this->key_validation_service   = new Wordlift_Key_Validation_Service( $this->configuration_service );
1075
-		$this->content_filter_service   = new Wordlift_Content_Filter_Service( $this->entity_service, $this->configuration_service );
1076
-		$this->relation_rebuild_service = new Wordlift_Relation_Rebuild_Service( $this->content_filter_service, $this->entity_service );
1077
-		$this->sample_data_service      = new Wordlift_Sample_Data_Service( $this->entity_type_service, $this->configuration_service );
1078
-		$this->sample_data_ajax_adapter = new Wordlift_Sample_Data_Ajax_Adapter( $this->sample_data_service );
1067
+		$property_getter                       = Wordlift_Property_Getter_Factory::create($this->entity_service);
1068
+		$this->entity_post_to_jsonld_converter = new Wordlift_Entity_Post_To_Jsonld_Converter($this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $property_getter);
1069
+		$this->post_to_jsonld_converter        = new Wordlift_Post_To_Jsonld_Converter($this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $this->configuration_service, $this->entity_post_to_jsonld_converter);
1070
+		$this->postid_to_jsonld_converter      = new Wordlift_Postid_To_Jsonld_Converter($this->entity_service, $this->entity_post_to_jsonld_converter, $this->post_to_jsonld_converter);
1071
+		$this->jsonld_website_converter        = new Wordlift_Website_Jsonld_Converter($this->entity_type_service, $this->entity_service, $this->user_service, $attachment_service, $this->configuration_service, $this->entity_post_to_jsonld_converter);
1072
+		$this->jsonld_service                  = new Wordlift_Jsonld_Service($this->entity_service, $this->postid_to_jsonld_converter, $this->jsonld_website_converter);
1073
+
1074
+		$this->key_validation_service   = new Wordlift_Key_Validation_Service($this->configuration_service);
1075
+		$this->content_filter_service   = new Wordlift_Content_Filter_Service($this->entity_service, $this->configuration_service);
1076
+		$this->relation_rebuild_service = new Wordlift_Relation_Rebuild_Service($this->content_filter_service, $this->entity_service);
1077
+		$this->sample_data_service      = new Wordlift_Sample_Data_Service($this->entity_type_service, $this->configuration_service);
1078
+		$this->sample_data_ajax_adapter = new Wordlift_Sample_Data_Ajax_Adapter($this->sample_data_service);
1079 1079
 
1080 1080
 		// Initialize the shortcodes.
1081 1081
 		new Wordlift_Navigator_Shortcode();
1082 1082
 		new Wordlift_Chord_Shortcode();
1083 1083
 		new Wordlift_Geomap_Shortcode();
1084 1084
 		new Wordlift_Timeline_Shortcode();
1085
-		new Wordlift_Related_Entities_Cloud_Shortcode( $this->relation_service );
1085
+		new Wordlift_Related_Entities_Cloud_Shortcode($this->relation_service);
1086 1086
 
1087 1087
 		// Initialize the SEO service.
1088 1088
 		new Wordlift_Seo_Service();
@@ -1091,11 +1091,11 @@  discard block
 block discarded – undo
1091 1091
 		new Wordlift_AMP_Service();
1092 1092
 
1093 1093
 		/** Adapters. */
1094
-		$this->entity_type_adapter      = new Wordlift_Entity_Type_Adapter( $this->entity_type_service );
1095
-		$this->publisher_ajax_adapter   = new Wordlift_Publisher_Ajax_Adapter( $publisher_service );
1096
-		$this->tinymce_adapter          = new Wordlift_Tinymce_Adapter( $this );
1097
-		$this->batch_analysis_adapter   = new Wordlift_Batch_Analysis_Adapter( $this->batch_analysis_service );
1098
-		$this->relation_rebuild_adapter = new Wordlift_Relation_Rebuild_Adapter( $this->relation_rebuild_service );
1094
+		$this->entity_type_adapter      = new Wordlift_Entity_Type_Adapter($this->entity_type_service);
1095
+		$this->publisher_ajax_adapter   = new Wordlift_Publisher_Ajax_Adapter($publisher_service);
1096
+		$this->tinymce_adapter          = new Wordlift_Tinymce_Adapter($this);
1097
+		$this->batch_analysis_adapter   = new Wordlift_Batch_Analysis_Adapter($this->batch_analysis_service);
1098
+		$this->relation_rebuild_adapter = new Wordlift_Relation_Rebuild_Adapter($this->relation_rebuild_service);
1099 1099
 
1100 1100
 		/** Async Tasks. */
1101 1101
 		new Wordlift_Sparql_Query_Async_Task();
@@ -1110,15 +1110,15 @@  discard block
 block discarded – undo
1110 1110
 		$this->select2_element         = new Wordlift_Admin_Select2_Element();
1111 1111
 		$this->language_select_element = new Wordlift_Admin_Language_Select_Element();
1112 1112
 		$tabs_element                  = new Wordlift_Admin_Tabs_Element();
1113
-		$this->publisher_element       = new Wordlift_Admin_Publisher_Element( $this->configuration_service, $publisher_service, $tabs_element, $this->select2_element );
1114
-		$this->author_element          = new Wordlift_Admin_Author_Element( $publisher_service, $this->select2_element );
1113
+		$this->publisher_element       = new Wordlift_Admin_Publisher_Element($this->configuration_service, $publisher_service, $tabs_element, $this->select2_element);
1114
+		$this->author_element          = new Wordlift_Admin_Author_Element($publisher_service, $this->select2_element);
1115 1115
 
1116
-		$this->settings_page             = new Wordlift_Admin_Settings_Page( $this->configuration_service, $this->entity_service, $this->input_element, $this->language_select_element, $this->publisher_element, $this->radio_input_element );
1117
-		$this->batch_analysis_page       = new Wordlift_Batch_Analysis_Page( $this->batch_analysis_service );
1118
-		$this->settings_page_action_link = new Wordlift_Admin_Settings_Page_Action_Link( $this->settings_page );
1116
+		$this->settings_page             = new Wordlift_Admin_Settings_Page($this->configuration_service, $this->entity_service, $this->input_element, $this->language_select_element, $this->publisher_element, $this->radio_input_element);
1117
+		$this->batch_analysis_page       = new Wordlift_Batch_Analysis_Page($this->batch_analysis_service);
1118
+		$this->settings_page_action_link = new Wordlift_Admin_Settings_Page_Action_Link($this->settings_page);
1119 1119
 
1120 1120
 		// Pages.
1121
-		new Wordlift_Admin_Post_Edit_Page( $this );
1121
+		new Wordlift_Admin_Post_Edit_Page($this);
1122 1122
 		new Wordlift_Entity_Type_Admin_Service();
1123 1123
 
1124 1124
 		// create an instance of the entity type list admin page controller.
@@ -1131,23 +1131,23 @@  discard block
 block discarded – undo
1131 1131
 		$this->related_entities_cloud_widget = new Wordlift_Related_Entities_Cloud_Widget();
1132 1132
 
1133 1133
 		//** WordPress Admin */
1134
-		$this->download_your_data_page = new Wordlift_Admin_Download_Your_Data_Page( $this->configuration_service );
1135
-		$this->status_page             = new Wordlift_Admin_Status_Page( $this->entity_service, $this->sparql_service );
1134
+		$this->download_your_data_page = new Wordlift_Admin_Download_Your_Data_Page($this->configuration_service);
1135
+		$this->status_page             = new Wordlift_Admin_Status_Page($this->entity_service, $this->sparql_service);
1136 1136
 
1137 1137
 		// Create an instance of the install wizard.
1138
-		$this->admin_setup = new Wordlift_Admin_Setup( $this->configuration_service, $this->key_validation_service, $this->entity_service );
1138
+		$this->admin_setup = new Wordlift_Admin_Setup($this->configuration_service, $this->key_validation_service, $this->entity_service);
1139 1139
 
1140
-		$this->category_taxonomy_service = new Wordlift_Category_Taxonomy_Service( $this->entity_post_type_service );
1140
+		$this->category_taxonomy_service = new Wordlift_Category_Taxonomy_Service($this->entity_post_type_service);
1141 1141
 
1142 1142
 		// User Profile.
1143
-		new Wordlift_Admin_User_Profile_Page( $this->author_element, $this->user_service );
1143
+		new Wordlift_Admin_User_Profile_Page($this->author_element, $this->user_service);
1144 1144
 
1145 1145
 		$this->event_entity_page_service = new Wordlift_Event_Entity_Page_Service();
1146 1146
 
1147 1147
 		// Load the debug service if WP is in debug mode.
1148
-		if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
1149
-			require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordlift-debug-service.php';
1150
-			new Wordlift_Debug_Service( $this->entity_service, $uri_service );
1148
+		if (defined('WP_DEBUG') && WP_DEBUG) {
1149
+			require_once plugin_dir_path(dirname(__FILE__)).'includes/class-wordlift-debug-service.php';
1150
+			new Wordlift_Debug_Service($this->entity_service, $uri_service);
1151 1151
 		}
1152 1152
 
1153 1153
 	}
@@ -1164,9 +1164,9 @@  discard block
 block discarded – undo
1164 1164
 	private function set_locale() {
1165 1165
 
1166 1166
 		$plugin_i18n = new Wordlift_i18n();
1167
-		$plugin_i18n->set_domain( $this->get_plugin_name() );
1167
+		$plugin_i18n->set_domain($this->get_plugin_name());
1168 1168
 
1169
-		$this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
1169
+		$this->loader->add_action('plugins_loaded', $plugin_i18n, 'load_plugin_textdomain');
1170 1170
 
1171 1171
 	}
1172 1172
 
@@ -1187,130 +1187,130 @@  discard block
 block discarded – undo
1187 1187
 			$this->user_service
1188 1188
 		);
1189 1189
 
1190
-		$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
1191
-		$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
1190
+		$this->loader->add_action('admin_enqueue_scripts', $plugin_admin, 'enqueue_styles');
1191
+		$this->loader->add_action('admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts');
1192 1192
 
1193 1193
 		// Hook the init action to the Topic Taxonomy service.
1194
-		$this->loader->add_action( 'init', $this->topic_taxonomy_service, 'init', 0 );
1194
+		$this->loader->add_action('init', $this->topic_taxonomy_service, 'init', 0);
1195 1195
 
1196 1196
 		// Hook the deleted_post_meta action to the Thumbnail service.
1197
-		$this->loader->add_action( 'deleted_post_meta', $this->thumbnail_service, 'deleted_post_meta', 10, 4 );
1197
+		$this->loader->add_action('deleted_post_meta', $this->thumbnail_service, 'deleted_post_meta', 10, 4);
1198 1198
 
1199 1199
 		// Hook the added_post_meta action to the Thumbnail service.
1200
-		$this->loader->add_action( 'added_post_meta', $this->thumbnail_service, 'added_or_updated_post_meta', 10, 4 );
1200
+		$this->loader->add_action('added_post_meta', $this->thumbnail_service, 'added_or_updated_post_meta', 10, 4);
1201 1201
 
1202 1202
 		// Hook the updated_post_meta action to the Thumbnail service.
1203
-		$this->loader->add_action( 'updated_post_meta', $this->thumbnail_service, 'added_or_updated_post_meta', 10, 4 );
1203
+		$this->loader->add_action('updated_post_meta', $this->thumbnail_service, 'added_or_updated_post_meta', 10, 4);
1204 1204
 
1205 1205
 		// Hook the AJAX wl_timeline action to the Timeline service.
1206
-		$this->loader->add_action( 'wp_ajax_wl_timeline', $this->timeline_service, 'ajax_timeline' );
1206
+		$this->loader->add_action('wp_ajax_wl_timeline', $this->timeline_service, 'ajax_timeline');
1207 1207
 
1208 1208
 		// Register custom allowed redirect hosts.
1209
-		$this->loader->add_filter( 'allowed_redirect_hosts', $this->redirect_service, 'allowed_redirect_hosts' );
1209
+		$this->loader->add_filter('allowed_redirect_hosts', $this->redirect_service, 'allowed_redirect_hosts');
1210 1210
 		// Hook the AJAX wordlift_redirect action to the Redirect service.
1211
-		$this->loader->add_action( 'wp_ajax_wordlift_redirect', $this->redirect_service, 'ajax_redirect' );
1211
+		$this->loader->add_action('wp_ajax_wordlift_redirect', $this->redirect_service, 'ajax_redirect');
1212 1212
 		// Hook the AJAX wordlift_redirect action to the Redirect service.
1213
-		$this->loader->add_action( 'wp_ajax_wordlift_get_stats', $this->dashboard_service, 'ajax_get_stats' );
1213
+		$this->loader->add_action('wp_ajax_wordlift_get_stats', $this->dashboard_service, 'ajax_get_stats');
1214 1214
 		// Hook the AJAX wordlift_redirect action to the Redirect service.
1215
-		$this->loader->add_action( 'wp_dashboard_setup', $this->dashboard_service, 'add_dashboard_widgets' );
1215
+		$this->loader->add_action('wp_dashboard_setup', $this->dashboard_service, 'add_dashboard_widgets');
1216 1216
 
1217 1217
 		// Hook save_post to the entity service to update custom fields (such as alternate labels).
1218 1218
 		// We have a priority of 9 because we want to be executed before data is sent to Redlink.
1219
-		$this->loader->add_action( 'save_post', $this->entity_service, 'save_post', 9, 3 );
1220
-		$this->loader->add_action( 'save_post', $this->rating_service, 'set_rating_for', 20, 1 );
1219
+		$this->loader->add_action('save_post', $this->entity_service, 'save_post', 9, 3);
1220
+		$this->loader->add_action('save_post', $this->rating_service, 'set_rating_for', 20, 1);
1221 1221
 
1222
-		$this->loader->add_action( 'edit_form_before_permalink', $this->entity_service, 'edit_form_before_permalink', 10, 1 );
1223
-		$this->loader->add_action( 'in_admin_header', $this->rating_service, 'in_admin_header' );
1222
+		$this->loader->add_action('edit_form_before_permalink', $this->entity_service, 'edit_form_before_permalink', 10, 1);
1223
+		$this->loader->add_action('in_admin_header', $this->rating_service, 'in_admin_header');
1224 1224
 
1225 1225
 		// Entity listing customization (wp-admin/edit.php)
1226 1226
 		// Add custom columns
1227
-		$this->loader->add_filter( 'manage_entity_posts_columns', $this->entity_list_service, 'register_custom_columns' );
1227
+		$this->loader->add_filter('manage_entity_posts_columns', $this->entity_list_service, 'register_custom_columns');
1228 1228
 		// no explicit entity as it prevents handling of other post types.
1229
-		$this->loader->add_filter( 'manage_posts_custom_column', $this->entity_list_service, 'render_custom_columns', 10, 2 );
1229
+		$this->loader->add_filter('manage_posts_custom_column', $this->entity_list_service, 'render_custom_columns', 10, 2);
1230 1230
 		// Add 4W selection
1231
-		$this->loader->add_action( 'restrict_manage_posts', $this->entity_list_service, 'restrict_manage_posts_classification_scope' );
1232
-		$this->loader->add_filter( 'posts_clauses', $this->entity_list_service, 'posts_clauses_classification_scope' );
1233
-		$this->loader->add_action( 'pre_get_posts', $this->entity_list_service, 'pre_get_posts' );
1234
-		$this->loader->add_action( 'load-edit.php', $this->entity_list_service, 'load_edit' );
1235
-		$this->loader->add_filter( 'wp_terms_checklist_args', $this->entity_types_taxonomy_walker, 'terms_checklist_args' );
1231
+		$this->loader->add_action('restrict_manage_posts', $this->entity_list_service, 'restrict_manage_posts_classification_scope');
1232
+		$this->loader->add_filter('posts_clauses', $this->entity_list_service, 'posts_clauses_classification_scope');
1233
+		$this->loader->add_action('pre_get_posts', $this->entity_list_service, 'pre_get_posts');
1234
+		$this->loader->add_action('load-edit.php', $this->entity_list_service, 'load_edit');
1235
+		$this->loader->add_filter('wp_terms_checklist_args', $this->entity_types_taxonomy_walker, 'terms_checklist_args');
1236 1236
 
1237 1237
 		// Hook the PrimaShop adapter to <em>prima_metabox_entity_header_args</em> in order to add header support for
1238 1238
 		// entities.
1239
-		$this->loader->add_filter( 'prima_metabox_entity_header_args', $this->primashop_adapter, 'prima_metabox_entity_header_args', 10, 2 );
1239
+		$this->loader->add_filter('prima_metabox_entity_header_args', $this->primashop_adapter, 'prima_metabox_entity_header_args', 10, 2);
1240 1240
 
1241 1241
 		// Filter imported post meta.
1242
-		$this->loader->add_filter( 'wp_import_post_meta', $this->import_service, 'wp_import_post_meta', 10, 3 );
1242
+		$this->loader->add_filter('wp_import_post_meta', $this->import_service, 'wp_import_post_meta', 10, 3);
1243 1243
 
1244 1244
 		// Notify the import service when an import starts and ends.
1245
-		$this->loader->add_action( 'import_start', $this->import_service, 'import_start', 10, 0 );
1246
-		$this->loader->add_action( 'import_end', $this->import_service, 'import_end', 10, 0 );
1245
+		$this->loader->add_action('import_start', $this->import_service, 'import_start', 10, 0);
1246
+		$this->loader->add_action('import_end', $this->import_service, 'import_end', 10, 0);
1247 1247
 
1248 1248
 		// Hook the AJAX wl_rebuild action to the Rebuild Service.
1249
-		$this->loader->add_action( 'wp_ajax_wl_rebuild', $this->rebuild_service, 'rebuild' );
1249
+		$this->loader->add_action('wp_ajax_wl_rebuild', $this->rebuild_service, 'rebuild');
1250 1250
 
1251 1251
 		// Hook the menu to the Download Your Data page.
1252
-		$this->loader->add_action( 'admin_menu', $this->download_your_data_page, 'admin_menu', 100, 0 );
1253
-		$this->loader->add_action( 'admin_menu', $this->status_page, 'admin_menu', 100, 0 );
1254
-		$this->loader->add_action( 'admin_menu', $this->entity_type_settings_admin_page, 'admin_menu', 100, 0 );
1252
+		$this->loader->add_action('admin_menu', $this->download_your_data_page, 'admin_menu', 100, 0);
1253
+		$this->loader->add_action('admin_menu', $this->status_page, 'admin_menu', 100, 0);
1254
+		$this->loader->add_action('admin_menu', $this->entity_type_settings_admin_page, 'admin_menu', 100, 0);
1255 1255
 
1256 1256
 		// Hook the admin-ajax.php?action=wl_download_your_data&out=xyz links.
1257
-		$this->loader->add_action( 'wp_ajax_wl_download_your_data', $this->download_your_data_page, 'download_your_data', 10 );
1257
+		$this->loader->add_action('wp_ajax_wl_download_your_data', $this->download_your_data_page, 'download_your_data', 10);
1258 1258
 
1259 1259
 		// Hook the AJAX wl_jsonld action to the JSON-LD service.
1260
-		$this->loader->add_action( 'wp_ajax_wl_jsonld', $this->jsonld_service, 'get' );
1260
+		$this->loader->add_action('wp_ajax_wl_jsonld', $this->jsonld_service, 'get');
1261 1261
 
1262 1262
 		// Hook the AJAX wl_validate_key action to the Key Validation service.
1263
-		$this->loader->add_action( 'wp_ajax_wl_validate_key', $this->key_validation_service, 'validate_key' );
1263
+		$this->loader->add_action('wp_ajax_wl_validate_key', $this->key_validation_service, 'validate_key');
1264 1264
 
1265 1265
 		// Hook the `admin_init` function to the Admin Setup.
1266
-		$this->loader->add_action( 'admin_init', $this->admin_setup, 'admin_init' );
1266
+		$this->loader->add_action('admin_init', $this->admin_setup, 'admin_init');
1267 1267
 
1268 1268
 		// Hook the admin_init to the settings page.
1269
-		$this->loader->add_action( 'admin_init', $this->settings_page, 'admin_init' );
1269
+		$this->loader->add_action('admin_init', $this->settings_page, 'admin_init');
1270 1270
 
1271 1271
 		// Hook the menu creation on the general wordlift menu creation
1272
-		$this->loader->add_action( 'wl_admin_menu', $this->settings_page, 'admin_menu', 10, 2 );
1273
-		if ( defined( 'WORDLIFT_BATCH' ) && WORDLIFT_BATCH ) {
1272
+		$this->loader->add_action('wl_admin_menu', $this->settings_page, 'admin_menu', 10, 2);
1273
+		if (defined('WORDLIFT_BATCH') && WORDLIFT_BATCH) {
1274 1274
 			// Add the functionality only if a flag is set in wp-config.php .
1275
-			$this->loader->add_action( 'wl_admin_menu', $this->batch_analysis_page, 'admin_menu', 10, 2 );
1275
+			$this->loader->add_action('wl_admin_menu', $this->batch_analysis_page, 'admin_menu', 10, 2);
1276 1276
 		}
1277 1277
 
1278 1278
 		// Hook key update.
1279
-		$this->loader->add_action( 'pre_update_option_wl_general_settings', $this->configuration_service, 'maybe_update_dataset_uri', 10, 2 );
1280
-		$this->loader->add_action( 'update_option_wl_general_settings', $this->configuration_service, 'update_key', 10, 2 );
1279
+		$this->loader->add_action('pre_update_option_wl_general_settings', $this->configuration_service, 'maybe_update_dataset_uri', 10, 2);
1280
+		$this->loader->add_action('update_option_wl_general_settings', $this->configuration_service, 'update_key', 10, 2);
1281 1281
 
1282 1282
 		// Add additional action links to the WordLift plugin in the plugins page.
1283
-		$this->loader->add_filter( 'plugin_action_links_wordlift/wordlift.php', $this->settings_page_action_link, 'action_links', 10, 1 );
1283
+		$this->loader->add_filter('plugin_action_links_wordlift/wordlift.php', $this->settings_page_action_link, 'action_links', 10, 1);
1284 1284
 
1285 1285
 		// Hook the AJAX `wl_publisher` action name.
1286
-		$this->loader->add_action( 'wp_ajax_wl_publisher', $this->publisher_ajax_adapter, 'publisher' );
1286
+		$this->loader->add_action('wp_ajax_wl_publisher', $this->publisher_ajax_adapter, 'publisher');
1287 1287
 
1288 1288
 		// Hook row actions for the entity type list admin.
1289
-		$this->loader->add_filter( 'wl_entity_type_row_actions', $this->entity_type_admin_page, 'wl_entity_type_row_actions', 10, 2 );
1289
+		$this->loader->add_filter('wl_entity_type_row_actions', $this->entity_type_admin_page, 'wl_entity_type_row_actions', 10, 2);
1290 1290
 
1291 1291
 		// Hook capabilities manipulation to allow access to entity type admin
1292 1292
 		// page  on wordpress versions before 4.7.
1293 1293
 		global $wp_version;
1294
-		if ( version_compare( $wp_version, '4.7', '<' ) ) {
1295
-			$this->loader->add_filter( 'map_meta_cap', $this->entity_type_admin_page, 'enable_admin_access_pre_47', 10, 4 );
1294
+		if (version_compare($wp_version, '4.7', '<')) {
1295
+			$this->loader->add_filter('map_meta_cap', $this->entity_type_admin_page, 'enable_admin_access_pre_47', 10, 4);
1296 1296
 		}
1297 1297
 
1298
-		$this->loader->add_action( 'wp_async_wl_run_sparql_query', $this->sparql_service, 'run_sparql_query', 10, 1 );
1298
+		$this->loader->add_action('wp_async_wl_run_sparql_query', $this->sparql_service, 'run_sparql_query', 10, 1);
1299 1299
 
1300 1300
 		/** Adapters. */
1301
-		$this->loader->add_filter( 'mce_external_plugins', $this->tinymce_adapter, 'mce_external_plugins', 10, 1 );
1302
-		$this->loader->add_action( 'wp_ajax_wl_batch_analysis_submit_auto_selected_posts', $this->batch_analysis_adapter, 'submit_auto_selected_posts', 10 );
1303
-		$this->loader->add_action( 'wp_ajax_wl_batch_analysis_submit', $this->batch_analysis_adapter, 'submit', 10 );
1304
-		$this->loader->add_action( 'wp_ajax_wl_batch_analysis_cancel', $this->batch_analysis_adapter, 'cancel', 10 );
1305
-		$this->loader->add_action( 'wp_ajax_wl_batch_analysis_clear_warning', $this->batch_analysis_adapter, 'clear_warning', 10 );
1306
-		$this->loader->add_action( 'wp_ajax_wl_relation_rebuild_process_all', $this->relation_rebuild_adapter, 'process_all', 10 );
1301
+		$this->loader->add_filter('mce_external_plugins', $this->tinymce_adapter, 'mce_external_plugins', 10, 1);
1302
+		$this->loader->add_action('wp_ajax_wl_batch_analysis_submit_auto_selected_posts', $this->batch_analysis_adapter, 'submit_auto_selected_posts', 10);
1303
+		$this->loader->add_action('wp_ajax_wl_batch_analysis_submit', $this->batch_analysis_adapter, 'submit', 10);
1304
+		$this->loader->add_action('wp_ajax_wl_batch_analysis_cancel', $this->batch_analysis_adapter, 'cancel', 10);
1305
+		$this->loader->add_action('wp_ajax_wl_batch_analysis_clear_warning', $this->batch_analysis_adapter, 'clear_warning', 10);
1306
+		$this->loader->add_action('wp_ajax_wl_relation_rebuild_process_all', $this->relation_rebuild_adapter, 'process_all', 10);
1307 1307
 
1308
-		$this->loader->add_action( 'wp_ajax_wl_sample_data_create', $this->sample_data_ajax_adapter, 'create' );
1309
-		$this->loader->add_action( 'wp_ajax_wl_sample_data_delete', $this->sample_data_ajax_adapter, 'delete' );
1308
+		$this->loader->add_action('wp_ajax_wl_sample_data_create', $this->sample_data_ajax_adapter, 'create');
1309
+		$this->loader->add_action('wp_ajax_wl_sample_data_delete', $this->sample_data_ajax_adapter, 'delete');
1310 1310
 
1311 1311
 		// Hooks to restrict multisite super admin from manipulating entity types.
1312
-		if ( is_multisite() ) {
1313
-			$this->loader->add_filter( 'map_meta_cap', $this->entity_type_admin_page, 'restrict_super_admin', 10, 4 );
1312
+		if (is_multisite()) {
1313
+			$this->loader->add_filter('map_meta_cap', $this->entity_type_admin_page, 'restrict_super_admin', 10, 4);
1314 1314
 		}
1315 1315
 
1316 1316
 	}
@@ -1324,49 +1324,49 @@  discard block
 block discarded – undo
1324 1324
 	 */
1325 1325
 	private function define_public_hooks() {
1326 1326
 
1327
-		$plugin_public = new Wordlift_Public( $this->get_plugin_name(), $this->get_version() );
1327
+		$plugin_public = new Wordlift_Public($this->get_plugin_name(), $this->get_version());
1328 1328
 
1329 1329
 		// Register the entity post type.
1330
-		$this->loader->add_action( 'init', $this->entity_post_type_service, 'register' );
1330
+		$this->loader->add_action('init', $this->entity_post_type_service, 'register');
1331 1331
 
1332 1332
 		// Bind the link generation and handling hooks to the entity link service.
1333
-		$this->loader->add_filter( 'post_type_link', $this->entity_link_service, 'post_type_link', 10, 4 );
1334
-		$this->loader->add_action( 'pre_get_posts', $this->entity_link_service, 'pre_get_posts', PHP_INT_MAX, 1 );
1335
-		$this->loader->add_filter( 'wp_unique_post_slug_is_bad_flat_slug', $this->entity_link_service, 'wp_unique_post_slug_is_bad_flat_slug', 10, 3 );
1336
-		$this->loader->add_filter( 'wp_unique_post_slug_is_bad_hierarchical_slug', $this->entity_link_service, 'wp_unique_post_slug_is_bad_hierarchical_slug', 10, 4 );
1333
+		$this->loader->add_filter('post_type_link', $this->entity_link_service, 'post_type_link', 10, 4);
1334
+		$this->loader->add_action('pre_get_posts', $this->entity_link_service, 'pre_get_posts', PHP_INT_MAX, 1);
1335
+		$this->loader->add_filter('wp_unique_post_slug_is_bad_flat_slug', $this->entity_link_service, 'wp_unique_post_slug_is_bad_flat_slug', 10, 3);
1336
+		$this->loader->add_filter('wp_unique_post_slug_is_bad_hierarchical_slug', $this->entity_link_service, 'wp_unique_post_slug_is_bad_hierarchical_slug', 10, 4);
1337 1337
 
1338
-		$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
1339
-		$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
1338
+		$this->loader->add_action('wp_enqueue_scripts', $plugin_public, 'enqueue_styles');
1339
+		$this->loader->add_action('wp_enqueue_scripts', $plugin_public, 'enqueue_scripts');
1340 1340
 
1341 1341
 		// Hook the content filter service to add entity links.
1342
-		$this->loader->add_filter( 'the_content', $this->content_filter_service, 'the_content' );
1342
+		$this->loader->add_filter('the_content', $this->content_filter_service, 'the_content');
1343 1343
 
1344 1344
 		// Hook the AJAX wl_timeline action to the Timeline service.
1345
-		$this->loader->add_action( 'wp_ajax_nopriv_wl_timeline', $this->timeline_service, 'ajax_timeline' );
1345
+		$this->loader->add_action('wp_ajax_nopriv_wl_timeline', $this->timeline_service, 'ajax_timeline');
1346 1346
 
1347 1347
 		// Hook the ShareThis service.
1348
-		$this->loader->add_filter( 'the_content', $this->sharethis_service, 'the_content', 99 );
1349
-		$this->loader->add_filter( 'the_excerpt', $this->sharethis_service, 'the_excerpt', 99 );
1348
+		$this->loader->add_filter('the_content', $this->sharethis_service, 'the_content', 99);
1349
+		$this->loader->add_filter('the_excerpt', $this->sharethis_service, 'the_excerpt', 99);
1350 1350
 
1351 1351
 		// Hook the AJAX wl_jsonld action to the JSON-LD service.
1352
-		$this->loader->add_action( 'wp_ajax_nopriv_wl_jsonld', $this->jsonld_service, 'get' );
1352
+		$this->loader->add_action('wp_ajax_nopriv_wl_jsonld', $this->jsonld_service, 'get');
1353 1353
 
1354 1354
 		// Hook the `pre_get_posts` action to the `Wordlift_Category_Taxonomy_Service`
1355 1355
 		// in order to tweak WP's `WP_Query` to include entities in queries related
1356 1356
 		// to categories.
1357
-		$this->loader->add_action( 'pre_get_posts', $this->category_taxonomy_service, 'pre_get_posts', 10, 1 );
1357
+		$this->loader->add_action('pre_get_posts', $this->category_taxonomy_service, 'pre_get_posts', 10, 1);
1358 1358
 
1359 1359
 		/*
1360 1360
 		 * Hook the `pre_get_posts` action to the `Wordlift_Event_Entity_Page_Service`
1361 1361
 		 * in order to tweak WP's `WP_Query` to show event related entities in reverse
1362 1362
 		 * order of start time.
1363 1363
 		 */
1364
-		$this->loader->add_action( 'pre_get_posts', $this->event_entity_page_service, 'pre_get_posts', 10, 1 );
1364
+		$this->loader->add_action('pre_get_posts', $this->event_entity_page_service, 'pre_get_posts', 10, 1);
1365 1365
 
1366
-		$this->loader->add_action( 'wp_async_wl_run_sparql_query', $this->sparql_service, 'run_sparql_query', 10, 1 );
1366
+		$this->loader->add_action('wp_async_wl_run_sparql_query', $this->sparql_service, 'run_sparql_query', 10, 1);
1367 1367
 
1368 1368
 		// This hook have to run before the rating service, as otherwise the post might not be a proper entity when rating is done.
1369
-		$this->loader->add_action( 'save_post', $this->entity_type_adapter, 'save_post', 9, 3 );
1369
+		$this->loader->add_action('save_post', $this->entity_type_adapter, 'save_post', 9, 3);
1370 1370
 
1371 1371
 	}
1372 1372
 
Please login to merge, or discard this patch.