mirror of
https://github.com/Karaka-Management/oms-MyPrivate.git
synced 2026-01-11 16:38:39 +00:00
127 lines
2.2 KiB
PHP
127 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.0
|
|
*
|
|
* @category TBD
|
|
* @package TBD
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @copyright 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
namespace Modules\MyPrivate;
|
|
|
|
use phpOMS\Message\RequestAbstract;
|
|
use phpOMS\Message\ResponseAbstract;
|
|
use phpOMS\Module\ModuleAbstract;
|
|
use phpOMS\Module\WebInterface;
|
|
|
|
/**
|
|
* Navigation class.
|
|
*
|
|
* @category Modules
|
|
* @package Modules\Navigation
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @license OMS License 1.0
|
|
* @link http://orange-management.com
|
|
* @since 1.0.0
|
|
*/
|
|
class Controller extends ModuleAbstract implements WebInterface
|
|
{
|
|
|
|
/**
|
|
* Module path.
|
|
*
|
|
* @var \string
|
|
* @since 1.0.0
|
|
*/
|
|
const MODULE_PATH = __DIR__;
|
|
|
|
/**
|
|
* Module version.
|
|
*
|
|
* @var \string
|
|
* @since 1.0.0
|
|
*/
|
|
const MODULE_VERSION = '1.0.0';
|
|
|
|
/**
|
|
* JavaScript files.
|
|
*
|
|
* @var \string[]
|
|
* @since 1.0.0
|
|
*/
|
|
public static $js = [
|
|
'backend',
|
|
];
|
|
|
|
/**
|
|
* CSS files.
|
|
*
|
|
* @var \string[]
|
|
* @since 1.0.0
|
|
*/
|
|
public static $css = [
|
|
];
|
|
|
|
/**
|
|
* Module name.
|
|
*
|
|
* @var \string
|
|
* @since 1.0.0
|
|
*/
|
|
protected static $module = 'MyPrivate';
|
|
|
|
/**
|
|
* Localization files.
|
|
*
|
|
* @var \string
|
|
* @since 1.0.0
|
|
*/
|
|
protected static $localization = [
|
|
];
|
|
|
|
/**
|
|
* Providing.
|
|
*
|
|
* @var \string[]
|
|
* @since 1.0.0
|
|
*/
|
|
protected static $providing = [
|
|
];
|
|
|
|
/**
|
|
* Dependencies.
|
|
*
|
|
* @var \string[]
|
|
* @since 1.0.0
|
|
*/
|
|
protected static $dependencies = [
|
|
];
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param \Web\WebApplication $app Application
|
|
*
|
|
* @since 1.0.0
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
*/
|
|
public function __construct($app)
|
|
{
|
|
parent::__construct($app);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function call(RequestAbstract $request, ResponseAbstract $response, $data = null)
|
|
{
|
|
}
|
|
}
|