From 368d2fdef383ac964733c75087c54be0128aa05c 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 d685842..149b042 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 122b227..399e6ad 100644 --- a/info.json +++ b/info.json @@ -15,7 +15,9 @@ }, "description": "Support module.", "directory": "Support", - "dependencies": {}, + "dependencies": { + "Admin" : "1.0.0" + }, "providing": { "Navigation": "*" },