2026-04-16 14:01:13 +02:00
|
|
|
<?php
|
2026-04-16 16:21:25 +02:00
|
|
|
/**
|
|
|
|
|
* Minimal Profile app bootstrap
|
|
|
|
|
*/
|
2026-04-16 14:01:13 +02:00
|
|
|
namespace OCA\MinimalProfile\AppInfo;
|
|
|
|
|
|
|
|
|
|
use OCP\AppFramework\App;
|
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
|
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
2026-04-16 16:03:37 +02:00
|
|
|
use OCP\Util;
|
2026-04-16 14:01:13 +02:00
|
|
|
|
|
|
|
|
class Application extends App implements IBootstrap {
|
2026-04-16 16:21:25 +02:00
|
|
|
public function register(IRegistrationContext $context): void {}
|
2026-04-16 14:01:13 +02:00
|
|
|
public function boot(IBootContext $context): void {
|
2026-04-16 16:21:25 +02:00
|
|
|
Util::addStyle('minimalprofile', 'minimalprofile');
|
2026-04-16 14:50:02 +02:00
|
|
|
}
|
2026-04-16 14:01:13 +02:00
|
|
|
}
|