From b44a1a6db447416328757fbc0244730f476d22ec Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 10 Jan 2016 19:13:00 +0100 Subject: [PATCH] Admin dependency added --- Controller.php | 4 +++- info.json | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Controller.php b/Controller.php index 9af34e0..3700a78 100644 --- a/Controller.php +++ b/Controller.php @@ -88,7 +88,9 @@ class Controller extends ModuleAbstract implements WebInterface * @var \string * @since 1.0.0 */ - protected static $dependencies = []; + protected static $dependencies = [ + 'Admin', + ]; /** * Routing elements. diff --git a/info.json b/info.json index e86875b..b1e410d 100644 --- a/info.json +++ b/info.json @@ -15,7 +15,9 @@ }, "description": "Human Resources module.", "directory": "HumanResourceManagement", - "dependencies": {}, + "dependencies": { + "Admin" : "1.0.0" + }, "providing": { "Navigation": "*" },