Nextcloud-App/lib/AppInfo/Application.php

32 lines
796 B
PHP
Raw Normal View History

<?php
2023-10-11 19:55:03 +00:00
declare(strict_types=1);
// SPDX-FileCopyrightText: BVSC e.V. <no@example.com>
// SPDX-License-Identifier: AGPL-3.0-or-later
2021-08-21 14:25:23 +00:00
namespace OCA\UPschooling\AppInfo;
use OCP\AppFramework\App;
use OCP\AppFramework\Bootstrap\IBootContext;
use OCP\AppFramework\Bootstrap\IBootstrap;
use OCP\AppFramework\Bootstrap\IRegistrationContext;
class Application extends App implements IBootstrap {
2021-08-21 14:25:23 +00:00
public const APP_ID = 'upschooling';
2023-10-11 19:55:03 +00:00
public function __construct()
{
parent::__construct(self::APP_ID);
}
2023-10-11 19:55:03 +00:00
public function register(IRegistrationContext $context): void
{
// Register the composer autoloader for packages shipped by this app, if applicable
include_once __DIR__ . '/../../vendor/autoload.php';
}
2023-10-11 19:55:03 +00:00
public function boot(IBootContext $context): void
{
// nothing to boot?
}
}