1 | <?php |
||
31 | class ThemeManager extends AbstractThemeManager { |
||
32 | |||
33 | /** |
||
34 | * Service name. |
||
35 | * |
||
36 | * @var string |
||
37 | */ |
||
38 | const SERVICE_NAME = "webeweb.core.manager.theme"; |
||
39 | |||
40 | /** |
||
41 | * Get the application theme provider. |
||
42 | * |
||
43 | * @return ApplicationThemeProviderInterface Returns the application theme provider. |
||
44 | */ |
||
45 | public function getApplicationThemeProvider() { |
||
48 | |||
49 | /** |
||
50 | * Get the breadcrumbs theme provider. |
||
51 | * |
||
52 | * @return BreadcrumbsThemeProviderInterface Returns the breadcrumbs theme provider. |
||
53 | */ |
||
54 | public function getBreadcrumbsThemeProvider() { |
||
57 | |||
58 | /** |
||
59 | * Get the footer theme provider. |
||
60 | * |
||
61 | * @return FooterThemeProviderInterface Returns the footer theme provider. |
||
62 | */ |
||
63 | public function getFooterThemeProvider() { |
||
66 | |||
67 | /** |
||
68 | * Get the hook drop down theme provider. |
||
69 | * |
||
70 | * @return HookDropDownThemeProviderInterface Returns the hook drop down theme provider. |
||
71 | */ |
||
72 | public function getHookDropDownThemeProvider() { |
||
75 | |||
76 | /** |
||
77 | * Get the navigation theme provider. |
||
78 | * |
||
79 | * @return NavigationThemeProviderInterface Returns the navigation theme provider. |
||
80 | */ |
||
81 | public function getNavigationThemeProvider() { |
||
84 | |||
85 | /** |
||
86 | * Get the notifications drop down theme provider. |
||
87 | * |
||
88 | * @return NotificationsDropDownThemeProviderInterface Returns the Notifications drop down theme provider. |
||
89 | */ |
||
90 | public function getNotificationsDropDownThemeProvider() { |
||
93 | |||
94 | /** |
||
95 | * Get the search theme provider. |
||
96 | * |
||
97 | * @return SearchThemeProviderInterface Returns the search theme provider. |
||
98 | */ |
||
99 | public function getSearchThemeProvider() { |
||
102 | |||
103 | /** |
||
104 | * Get the tasks drop down theme provider. |
||
105 | * |
||
106 | * @return TasksDropDownThemeProviderInterface Returns the tasks drop down theme provider. |
||
107 | */ |
||
108 | public function getTasksDropDownThemeProvider() { |
||
111 | |||
112 | /** |
||
113 | * Get the user info theme provider. |
||
114 | * |
||
115 | * @return UserInfoThemeProviderInterface Returns the user info theme provider. |
||
116 | */ |
||
117 | public function getUserInfoThemeProvider() { |
||
120 | |||
121 | /** |
||
122 | * {@inheritdoc} |
||
123 | */ |
||
124 | protected function initIndex() { |
||
137 | |||
138 | /** |
||
139 | * Set the application theme provider. |
||
140 | * |
||
141 | * @param ApplicationThemeProviderInterface $provider The application theme provider. |
||
142 | * @return ManagerInterface Returns this manager. |
||
143 | */ |
||
144 | public function setApplicationThemeProvider(ApplicationThemeProviderInterface $provider) { |
||
148 | |||
149 | /** |
||
150 | * Set the breadcrumbs theme provider. |
||
151 | * |
||
152 | * @param BreadcrumbsThemeProviderInterface $provider The breadcrumbs theme provider. |
||
153 | * @return ManagerInterface Returns this manager. |
||
154 | */ |
||
155 | public function setBreadcrumbsThemeProvider(BreadcrumbsThemeProviderInterface $provider) { |
||
159 | |||
160 | /** |
||
161 | * Set the footer theme provider. |
||
162 | * |
||
163 | * @param FooterThemeProviderInterface $provider The footer theme provider. |
||
164 | * @return ManagerInterface Returns this manager. |
||
165 | */ |
||
166 | public function setFooterThemeProvider(FooterThemeProviderInterface $provider) { |
||
170 | |||
171 | /** |
||
172 | * Set the hook drop down theme provider. |
||
173 | * |
||
174 | * @param HookDropDownThemeProviderInterface $provider The hook drop down theme provider. |
||
175 | * @return ManagerInterface Returns this manager. |
||
176 | */ |
||
177 | public function setHookDropDownThemeProvider(HookDropDownThemeProviderInterface $provider) { |
||
181 | |||
182 | /** |
||
183 | * Set the navigation theme provider. |
||
184 | * |
||
185 | * @param NavigationThemeProviderInterface $provider The navigation theme provider. |
||
186 | * @return ManagerInterface Returns this manager. |
||
187 | */ |
||
188 | public function setNavigationThemeProvider(NavigationThemeProviderInterface $provider) { |
||
192 | |||
193 | /** |
||
194 | * Set the notifications drop down theme provider. |
||
195 | * |
||
196 | * @param NotificationsDropDownThemeProviderInterface $provider The notifications drop down theme provider. |
||
197 | * @return ManagerInterface Returns this manager. |
||
198 | */ |
||
199 | public function setNotificationsDropDownThemeProvider(NotificationsDropDownThemeProviderInterface $provider) { |
||
203 | |||
204 | /** |
||
205 | * Set the search theme provider. |
||
206 | * |
||
207 | * @param SearchThemeProviderInterface $provider The search theme provider. |
||
208 | * @return ManagerInterface Returns this manager. |
||
209 | */ |
||
210 | public function setSearchThemeProvider(SearchThemeProviderInterface $provider) { |
||
214 | |||
215 | /** |
||
216 | * Set the tasks drop down theme provider. |
||
217 | * |
||
218 | * @param TasksDropDownThemeProviderInterface $provider The tasks drop down theme provider. |
||
219 | * @return ManagerInterface Returns this manager. |
||
220 | */ |
||
221 | public function setTasksDropDownThemeProvider(TasksDropDownThemeProviderInterface $provider) { |
||
225 | |||
226 | /** |
||
227 | * Set the user info theme provider. |
||
228 | * |
||
229 | * @param UserInfoThemeProviderInterface $provider The user info theme provider. |
||
230 | * @return ManagerInterface Returns this manager. |
||
231 | */ |
||
232 | public function setUserInfoThemeProvider(UserInfoThemeProviderInterface $provider) { |
||
236 | |||
237 | } |
||
238 |