mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-02-15 12:08:40 +00:00
Remove namespace from scalars
This commit is contained in:
parent
2827711970
commit
fc2d78e384
|
|
@ -45,7 +45,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Module path.
|
* Module path.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
const MODULE_PATH = __DIR__;
|
const MODULE_PATH = __DIR__;
|
||||||
|
|
@ -53,7 +53,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Module version.
|
* Module version.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
const MODULE_VERSION = '1.0.0';
|
const MODULE_VERSION = '1.0.0';
|
||||||
|
|
@ -61,7 +61,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Module name.
|
* Module name.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
const MODULE_NAME = 'Admin';
|
const MODULE_NAME = 'Admin';
|
||||||
|
|
@ -69,7 +69,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Localization files.
|
* Localization files.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $localization = [
|
protected static $localization = [
|
||||||
|
|
@ -79,7 +79,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Providing.
|
* Providing.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $providing = [];
|
protected static $providing = [];
|
||||||
|
|
@ -87,7 +87,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Dependencies.
|
* Dependencies.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $dependencies = [];
|
protected static $dependencies = [];
|
||||||
|
|
@ -326,7 +326,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||||
*/
|
*/
|
||||||
private function createNavigation(\int $pageId, RequestAbstract $request, ResponseAbstract $response)
|
private function createNavigation(int $pageId, RequestAbstract $request, ResponseAbstract $response)
|
||||||
{
|
{
|
||||||
$nav = Navigation::getInstance($request, $this->app->dbPool);
|
$nav = Navigation::getInstance($request, $this->app->dbPool);
|
||||||
$navView = new NavigationView($this->app, $request, $response);
|
$navView = new NavigationView($this->app, $request, $response);
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ class AccountMapper extends DataMapperAbstract
|
||||||
/**
|
/**
|
||||||
* Primary table.
|
* Primary table.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $table = 'account';
|
protected static $table = 'account';
|
||||||
|
|
@ -53,7 +53,7 @@ class AccountMapper extends DataMapperAbstract
|
||||||
/**
|
/**
|
||||||
* Primary field name.
|
* Primary field name.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $primaryField = 'account_id';
|
protected static $primaryField = 'account_id';
|
||||||
|
|
@ -61,7 +61,7 @@ class AccountMapper extends DataMapperAbstract
|
||||||
/**
|
/**
|
||||||
* Created at column
|
* Created at column
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $createdAt = 'account_created';
|
protected static $createdAt = 'account_created';
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ class GroupMapper extends DataMapperAbstract
|
||||||
/**
|
/**
|
||||||
* Primary table.
|
* Primary table.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $table = 'group';
|
protected static $table = 'group';
|
||||||
|
|
@ -44,7 +44,7 @@ class GroupMapper extends DataMapperAbstract
|
||||||
/**
|
/**
|
||||||
* Primary field name.
|
* Primary field name.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $primaryField = 'group_id';
|
protected static $primaryField = 'group_id';
|
||||||
|
|
@ -52,7 +52,7 @@ class GroupMapper extends DataMapperAbstract
|
||||||
/**
|
/**
|
||||||
* Created at column
|
* Created at column
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $createdAt = 'group_created';
|
protected static $createdAt = 'group_created';
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user