Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
<?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')
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user