-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPlugin.php
124 lines (111 loc) · 2.17 KB
/
Plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
/**
* Main plugin functionality.
*
* @package Bandstand
* @copyright Copyright (c) 2016, AudioTheme, LLC
* @license GPL-2.0+
* @link https://audiotheme.com/
* @since 1.0.0
*/
namespace Bandstand;
use Bandstand\Factory\PostFactory;
use Bandstand\Template\TemplateCompatibility;
use Bandstand\Template\TemplateLoader;
use Bandstand\Template\TemplateManager;
/**
* Main plugin class.
*
* @package Bandstand
* @since 1.0.0
*/
class Plugin extends AbstractPlugin {
/**
* Modules.
*
* @since 1.0.0
* @var ModuleCollection
*/
protected $modules;
/**
* Post factory.
*
* @since 1.0.0
* @var PostFactory
*/
protected $post_factory;
/**
* Template manager.
*
* @since 1.0.0
* @var TemplateManager
*/
protected $templates;
/**
* Constructor method.
*
* @since 1.0.0
*/
public function __construct() {
$this->modules = new ModuleCollection();
$this->post_factory = new PostFactory();
$this->templates = new TemplateManager(
$this,
new TemplateLoader( $this ),
new TemplateCompatibility()
);
}
/**
* Magic get method.
*
* @since 1.0.0
*
* @param string $name Property name.
* @return mixed
*/
public function __get( $name ) {
switch ( $name ) {
case 'modules' :
return $this->modules;
case 'post_factory' :
return $this->post_factory;
case 'templates' :
return $this->templates;
}
}
/**
* Load the plugin.
*
* @since 1.0.0
*/
public function load() {
$this->load_modules();
}
/**
* Load the active modules.
*
* Modules are always loaded when viewing the Bandstand Settings screen so
* they can be toggled with instant access.
*
* @since 1.0.0
*/
protected function load_modules() {
foreach ( $this->modules as $module ) {
// Load all modules on the Dashboard screen.
if ( ! $this->is_dashboard_screen() && ! $module->is_active() ) {
continue;
}
$this->register_hooks( $module->load() );
}
}
/**
* Whether the current request is the dashboard screen.
*
* @since 1.0.0
*
* @return bool
*/
protected function is_dashboard_screen() {
return is_admin() && isset( $_GET['page'] ) && 'bandstand' === $_GET['page'];
}
}