123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * @copyright Copyright (c) 2019 Robin Appelman <robin@icewind.nl>
- *
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\Theming\AppInfo;
- use OCA\Theming\Capabilities;
- use OCA\Theming\Listener\BeforePreferenceListener;
- use OCA\Theming\Listener\BeforeTemplateRenderedListener;
- use OCP\AppFramework\App;
- use OCP\AppFramework\Bootstrap\IBootContext;
- use OCP\AppFramework\Bootstrap\IBootstrap;
- use OCP\AppFramework\Bootstrap\IRegistrationContext;
- use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent;
- use OCP\Config\BeforePreferenceDeletedEvent;
- use OCP\Config\BeforePreferenceSetEvent;
- class Application extends App implements IBootstrap {
- public const APP_ID = 'theming';
- public function __construct() {
- parent::__construct(self::APP_ID);
- }
- public function register(IRegistrationContext $context): void {
- $context->registerCapability(Capabilities::class);
- $context->registerEventListener(BeforeTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class);
- $context->registerEventListener(BeforePreferenceSetEvent::class, BeforePreferenceListener::class);
- $context->registerEventListener(BeforePreferenceDeletedEvent::class, BeforePreferenceListener::class);
- }
- public function boot(IBootContext $context): void {
- }
- }
|