move backend constant

This commit is contained in:
Philipp Holzer 2019-08-11 14:33:25 +02:00
parent 2c5ba7fc15
commit 11752d7059
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 20 additions and 21 deletions

View File

@ -17,27 +17,6 @@ class Module
{
const DEFAULT = 'home';
const DEFAULT_CLASS = Home::class;
/**
* @var string The module name
*/
private $module;
/**
* @var BaseObject The module class
*/
private $module_class;
/**
* @var bool true, if the module is a backend module
*/
private $isBackend;
/**
* @var bool true, if the loaded addon is private, so we have to print out not allowed
*/
private $printNotAllowedAddon;
/**
* A list of modules, which are backend methods
*
@ -71,6 +50,26 @@ class Module
'xrd',
];
/**
* @var string The module name
*/
private $module;
/**
* @var BaseObject The module class
*/
private $module_class;
/**
* @var bool true, if the module is a backend module
*/
private $isBackend;
/**
* @var bool true, if the loaded addon is private, so we have to print out not allowed
*/
private $printNotAllowedAddon;
/**
* @return string
*/