Remove unused parameter from install

This commit is contained in:
Dennis Eichhorn 2018-05-20 11:53:43 +02:00
parent 3714872918
commit 0ba623c9a9
5 changed files with 7 additions and 20 deletions

View File

@ -29,5 +29,4 @@ use phpOMS\Module\InfoManager;
*/ */
class Installer extends InstallerAbstract class Installer extends InstallerAbstract
{ {
} }

View File

@ -1,3 +1,3 @@
<?php <?php
$moduleRoutes = []; return [];

View File

@ -1,3 +1,3 @@
<?php <?php
$moduleRoutes = []; return [];

View File

@ -11,6 +11,9 @@
* @link http://website.orange-management.de * @link http://website.orange-management.de
*/ */
return ['Navigation' => [ return ['Navigation' => [
'List' => 'List', 'Dashboard' => 'Dashboard',
'Exchange' => 'Exchange', 'Exchange' => 'Exchange',
'Export' => 'Export',
'Import' => 'Import',
'Setup' => 'Setup',
]]; ]];

View File

@ -1,15 +0,0 @@
<?php
/**
* Orange Management
*
* PHP Version 7.2
*
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
$MODLANG[1] = [
'i:ModuleInstalled' => 'Installation of the module {$1} was successful.',
];