1 | <?php namespace Intraxia\Jaxion\Core; |
||
15 | class Application extends Container implements ApplicationContract { |
||
16 | /** |
||
17 | * Define plugin version on Application. |
||
18 | */ |
||
19 | const VERSION = ''; |
||
20 | |||
21 | /** |
||
22 | * Singleton instance of the Application object |
||
23 | * |
||
24 | * @var Application[] |
||
25 | */ |
||
26 | protected static $instances = array(); |
||
27 | |||
28 | /** |
||
29 | * Instantiates a new Application container. |
||
30 | * |
||
31 | * The Application constructor enforces the presence of of a single instance |
||
32 | * of the Application. If an instance already exists, an Exception will be thrown. |
||
33 | * |
||
34 | * @param string $file |
||
35 | * @param array $providers |
||
36 | * |
||
37 | * @throws ApplicationAlreadyBootedException |
||
38 | */ |
||
39 | 27 | public function __construct( $file, array $providers = array() ) { |
|
54 | |||
55 | /** |
||
56 | * {@inheritDoc} |
||
57 | * |
||
58 | * @throws UnexpectedValueException |
||
59 | */ |
||
60 | public function boot() { |
||
61 | $loader = $this->fetch( 'loader' ); |
||
62 | |||
63 | if ( ! $loader instanceof LoaderContract ) { |
||
64 | throw new UnexpectedValueException; |
||
65 | } |
||
66 | |||
67 | foreach ( $this as $alias => $value ) { |
||
68 | if ( $value instanceof HasActions ) { |
||
69 | $loader->register_actions( $value ); |
||
70 | } |
||
71 | |||
72 | if ( $value instanceof HasFilters ) { |
||
73 | $loader->register_filters( $value ); |
||
74 | } |
||
75 | |||
76 | if ( $value instanceof HasShortcode ) { |
||
77 | $loader->register_shortcode( $value ); |
||
78 | } |
||
79 | } |
||
80 | |||
81 | add_action( 'plugins_loaded', array( $loader, 'run' ) ); |
||
82 | } |
||
83 | |||
84 | /** |
||
85 | * {@inheritdoc} |
||
86 | * |
||
87 | * @codeCoverageIgnore |
||
88 | */ |
||
89 | public function activate() { |
||
92 | |||
93 | /** |
||
94 | * {@inheritdoc} |
||
95 | * |
||
96 | * @codeCoverageIgnore |
||
97 | */ |
||
98 | public function deactivate() { |
||
101 | |||
102 | /** |
||
103 | * {@inheritDoc} |
||
104 | * |
||
105 | * @return Application |
||
106 | * @throws ApplicationNotBootedException |
||
107 | */ |
||
108 | 6 | public static function instance() { |
|
109 | 6 | if ( ! isset( $instances[ get_called_class() ] ) ) { |
|
110 | 6 | throw new ApplicationNotBootedException; |
|
111 | } |
||
112 | |||
113 | return static::$instances[ get_called_class() ]; |
||
114 | } |
||
115 | |||
116 | /** |
||
117 | * {@inheritDoc} |
||
118 | */ |
||
119 | 30 | public static function shutdown() { |
|
120 | 30 | if ( isset( $instances[ get_called_class() ] ) ) { |
|
121 | unset( static::$instances[ get_called_class() ] ); |
||
122 | } |
||
123 | 30 | } |
|
124 | |||
125 | /** |
||
126 | * Sets the plugin's url, path, and basename. |
||
127 | * |
||
128 | * @param string $file |
||
129 | */ |
||
130 | 3 | private function register_constants( $file ) { |
|
137 | |||
138 | /** |
||
139 | * Registers the built-in services with the Application container. |
||
140 | */ |
||
141 | 3 | private function register_core_services() { |
|
149 | } |
||
150 |