summaryrefslogtreecommitdiff
path: root/controllers/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'controllers/base.php')
-rw-r--r--controllers/base.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/controllers/base.php b/controllers/base.php
index 07c5db63..49376dce 100644
--- a/controllers/base.php
+++ b/controllers/base.php
@@ -131,6 +131,14 @@ abstract class Base
protected $google;
/**
+ * Category model
+ *
+ * @accesss protected
+ * @var \Model\Category
+ */
+ protected $category;
+
+ /**
* Event instance
*
* @accesss protected
@@ -157,6 +165,7 @@ abstract class Base
$this->rememberMe = $registry->rememberMe;
$this->lastLogin = $registry->lastLogin;
$this->google = $registry->google;
+ $this->category = $registry->category;
$this->event = $registry->shared('event');
}