0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-11-22 12:40:28 +01:00
organization_folders/lib/AppInfo/Application.php

27 lines
718 B
PHP
Raw Normal View History

2024-08-20 15:03:44 +02:00
<?php
namespace OCA\OrganizationFolders\AppInfo;
use OCP\AppFramework\App;
use OCP\AppFramework\Bootstrap\IBootstrap;
use OCP\AppFramework\Bootstrap\IRegistrationContext;
use OCP\AppFramework\Bootstrap\IBootContext;
2024-08-20 15:03:44 +02:00
use OCA\DAV\Events\SabrePluginAddEvent;
use OCA\OrganizationFolders\Listener\SabrePluginAddListener;
class Application extends App implements IBootstrap {
2024-08-20 15:03:44 +02:00
public const APP_ID = 'organization_folders';
public function __construct() {
parent::__construct(self::APP_ID);
}
public function register(IRegistrationContext $context): void {
$context->registerEventListener(SabrePluginAddEvent::class, SabrePluginAddListener::class);
}
public function boot(IBootContext $context): void {
}
2024-08-20 15:03:44 +02:00
}