Add categories for projects and tasks

This commit is contained in:
Frédéric Guillot
2014-05-21 22:33:57 -04:00
parent 57e40671af
commit a750b8ab2a
39 changed files with 815 additions and 44 deletions

View File

@@ -130,6 +130,14 @@ abstract class Base
*/
protected $google;
/**
* Category model
*
* @accesss protected
* @var \Model\Category
*/
protected $category;
/**
* Event instance
*
@@ -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');
}