]> git.mxchange.org Git - friendica.git/commitdiff
move backend constant
authorPhilipp Holzer <admin+github@philipp.info>
Sun, 11 Aug 2019 12:33:25 +0000 (14:33 +0200)
committerPhilipp Holzer <admin+github@philipp.info>
Sun, 11 Aug 2019 12:33:25 +0000 (14:33 +0200)
src/App/Module.php

index cf2c453ce7e0a39289502f2a571605d278b7de5b..63be2f651d9c252005cafeef1f867c32f80a0ad7 100644 (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
         */