-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationInterface.php
More file actions
222 lines (189 loc) · 4.77 KB
/
ApplicationInterface.php
File metadata and controls
222 lines (189 loc) · 4.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<?php
/*
* Copyright (c) 2022 Obione
*
* This file is part of BackBee Standalone.
*
* BackBee is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BackBee Standalone. If not, see <https://www.gnu.org/licenses/>.
*/
namespace BackBee;
use BackBee\AutoLoader\AutoLoader;
use BackBee\Config\Config;
use BackBee\Console\Console;
use BackBee\Controller\FrontController;
use BackBee\DependencyInjection\ContainerInterface;
use BackBee\Routing\RouteCollection;
use BackBee\Site\Site;
use Psr\Log\LoggerInterface;
use Symfony\Component\Config\Loader\DelegatingLoader;
use Symfony\Component\Config\Loader\LoaderInterface;
/**
* Interface ApplicationInterface
*
* @package BackBee
*
* @author c.rouillon <charles.rouillon@lp-digital.fr>
* @author e.chau <eric.chau@lp-digital.fr>
*/
interface ApplicationInterface
{
public const DEFAULT_CONTEXT = 'default';
public const DEFAULT_ENVIRONMENT = '';
/**
* @param Site|null $site
*/
public function start(Site $site = null);
/**
* @return boolean
*/
public function isStarted(): bool;
/**
* Stop the current BBApplication instance.
*/
public function stop();
/**
* Returns the starting context.
*
* @return string
*/
public function getContext(): string;
/**
* Returns the starting context.
*
* @return string
*/
public function getEnvironment();
/**
* @return string
*/
public function getBBDir(): string;
/**
* @return string
*/
public function getBaseDir(): string;
/**
* Get default repository directory path.
*
* @return string
*/
public function getBaseRepository(): string;
/**
* Get current repository directory path.
*
* @return string
*/
public function getRepository(): string;
/**
* @return Config
*/
public function getConfig(): Config;
/**
* @return string
*/
public function getConfigDir(): string;
/**
* Returns path to Data directory.
*
* @return string absolute path to Data directory
*/
public function getDataDir(): string;
/**
* Return the resource directories, if undefined, initialized with common resources.
*
* @return string[] The resource directories.
*/
public function getResourceDir(): array;
/**
* Return the class content repositories' path for this instance.
*
* @return string[] The class contents directories
*/
public function getClassContentDir(): array;
/**
* Gets the cache directory.
*
* @return string The cache directory
*/
public function getCacheDir(): string;
/**
* Gets the log directory.
*
* @return string The log directory
*/
public function getLogDir(): string;
/**
* Gets the app directory.
*
* @return string The app directory
*/
public function getAppDir(): string;
/**
* @return FrontController
*/
public function getController(): FrontController;
/**
* @return RouteCollection
*/
public function getRouting(): RouteCollection;
/**
* @return AutoLoader
*/
public function getAutoloader(): AutoLoader;
/**
* Get container.
*
* @return ContainerInterface
*/
public function getContainer();
/**
* @return bool
*/
public function isOverridedConfig(): bool;
/**
* @return bool
*/
public function isDebugMode();
/**
* @return null|Site
*/
public function getSite(): ?Site;
/**
* @return LoggerInterface
*/
public function getLogging(): LoggerInterface;
/**
* Is the BackBee application started as SAPI client?
*
* @return bool Returns true is application started as SAPI client, false otherwise
*/
public function isClientSAPI(): bool;
/**
* Register commands.
*
* @param Console $console
*
* @return mixed
*/
public function registerCommands(Console $console);
/**
* Loads the container configuration.
*/
public function registerContainerConfiguration(LoaderInterface $loader);
/**
* Get kernel bundles.
*
* @return array
*/
public function getKernelBundles(): array;
}