mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
|
<?php
|
||
|
namespace Xentral\Modules\SystemHealth;
|
||
|
|
||
|
use Xentral\Core\DependencyInjection\ContainerInterface;
|
||
|
use Xentral\Modules\SystemHealth\Gateway\SystemHealthGateway;
|
||
|
use Xentral\Modules\SystemHealth\Service\SystemHealthService;
|
||
|
use Xentral\Modules\SystemHealth\Service\SystemHealthServiceInterface;
|
||
|
|
||
|
final class Bootstrap
|
||
|
{
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public static function registerServices()
|
||
|
{
|
||
|
return [
|
||
|
'SystemHealthService' => 'onInitSystemHealthService',
|
||
|
'SystemHealthGateway' => 'onInitSystemHealthGateway',
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public static function registerJavascript()
|
||
|
{
|
||
|
return [
|
||
|
'SystemHealth' => [
|
||
|
'./classes/Modules/SystemHealth/www/css/systemhealth.js',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public static function registerStylesheets()
|
||
|
{
|
||
|
return [
|
||
|
'Voucher' => [
|
||
|
'./classes/Modules/SystemHealth/www/css/systemhealth.css',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param ContainerInterface $container
|
||
|
*
|
||
|
* @return SystemHealthGateway
|
||
|
*/
|
||
|
public static function onInitSystemHealthGateway(ContainerInterface $container)
|
||
|
{
|
||
|
return new SystemHealthGateway($container->get('Database'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param ContainerInterface $container
|
||
|
*
|
||
|
* @return SystemHealthService
|
||
|
*/
|
||
|
public static function onInitSystemHealthService(ContainerInterface $container)
|
||
|
{
|
||
|
return new SystemHealthService(
|
||
|
$container->get('Database'),
|
||
|
$container->get('SystemHealthGateway'),
|
||
|
$container->get('NotificationService')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|