oms-Navigation/Controller/Controller.php

79 lines
1.3 KiB
PHP
Executable File

<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Navigation
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Navigation\Controller;
use Modules\Navigation\Models\Navigation;
use phpOMS\Module\ModuleAbstract;
/**
* Navigation class.
*
* @package Modules\Navigation
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
class Controller extends ModuleAbstract
{
/**
* Module path.
*
* @var string
* @since 1.0.0
*/
public const PATH = __DIR__ . '/../';
/**
* Module version.
*
* @var string
* @since 1.0.0
*/
public const VERSION = '1.0.0';
/**
* Module name.
*
* @var string
* @since 1.0.0
*/
public const NAME = 'Navigation';
/**
* Module id.
*
* @var int
* @since 1.0.0
*/
public const ID = 1000500000;
/**
* Providing.
*
* @var string[]
* @since 1.0.0
*/
protected static array $providing = [
];
/**
* Dependencies.
*
* @var string[]
* @since 1.0.0
*/
protected static array $dependencies = [];
}