Application/Setting/Consumer/School/School.php
<?php
namespace SPHERE\Application\Setting\Consumer\School;
use SPHERE\Application\IModuleInterface;
use SPHERE\Application\Platform\Gatekeeper\Authorization\Consumer\Consumer;
use SPHERE\Common\Frontend\Icon\Repository\Education;
use SPHERE\Common\Main;
use SPHERE\Common\Window\Navigation\Link;
use SPHERE\System\Database\Link\Identifier;
use SPHERE\System\Extension\Extension;
/**
* Class School
*
* @package SPHERE\Application\Setting\Consumer\School
*/
class School extends Extension implements IModuleInterface
{
public static function registerModule()
{
Main::getDisplay()->addModuleNavigation(
new Link(new Link\Route(__NAMESPACE__), new Link\Name('Schulen'), new Link\Icon(new Education()))
);
Main::getDispatcher()->registerRoute(
Main::getDispatcher()->createRoute(__NAMESPACE__, '/Frontend::frontendDashboard')
);
Main::getDispatcher()->registerRoute(
Main::getDispatcher()->createRoute(__NAMESPACE__.'/Create',
__NAMESPACE__.'/Frontend::frontendSchoolCreate'
)
);
Main::getDispatcher()->registerRoute(
Main::getDispatcher()->createRoute(__NAMESPACE__.'/Edit',
__NAMESPACE__.'/Frontend::frontendSchoolEdit'
)
);
Main::getDispatcher()->registerRoute(
Main::getDispatcher()->createRoute(__NAMESPACE__.'/Delete',
__NAMESPACE__.'/Frontend::frontendSchoolDelete'
)
);
Main::getDispatcher()->registerRoute(
Main::getDispatcher()->createRoute(__NAMESPACE__.'/Destroy',
__NAMESPACE__.'/Frontend::frontendSchoolDestroy'
)
);
}
/**
* @return Service
*/
public static function useService()
{
return new Service(
new Identifier('Setting', 'Consumer', null, null, Consumer::useService()->getConsumerBySession()),
__DIR__.'/Service/Entity', __NAMESPACE__.'\Service\Entity'
);
}
/**
* @return Frontend
*/
public static function useFrontend()
{
return new Frontend();
}
}