move backend constant

2022.09-rc
Philipp Holzer 2019-08-11 14:33:25 +02:00
rodzic 2c5ba7fc15
commit 11752d7059
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D8365C3D36B77D90
1 zmienionych plików z 20 dodań i 21 usunięć

Wyświetl plik

@ -17,27 +17,6 @@ class Module
{ {
const DEFAULT = 'home'; const DEFAULT = 'home';
const DEFAULT_CLASS = Home::class; 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 * A list of modules, which are backend methods
* *
@ -71,6 +50,26 @@ class Module
'xrd', '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 * @return string
*/ */