diff options
Diffstat (limited to 'app/Auth/Base.php')
-rw-r--r-- | app/Auth/Base.php | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app/Auth/Base.php b/app/Auth/Base.php new file mode 100644 index 00000000..f9c1c329 --- /dev/null +++ b/app/Auth/Base.php @@ -0,0 +1,60 @@ +<?php + +namespace Auth; + +use Core\Tool; +use Core\Registry; +use PicoDb\Database; + +/** + * Base auth class + * + * @package auth + * @author Frederic Guillot + * + * @property \Model\Acl $acl + * @property \Model\LastLogin $lastLogin + * @property \Model\User $user + */ +abstract class Base +{ + /** + * Database instance + * + * @access protected + * @var \PicoDb\Database + */ + protected $db; + + /** + * Registry instance + * + * @access protected + * @var \Core\Registry + */ + protected $registry; + + /** + * Constructor + * + * @access public + * @param \Core\Registry $registry Registry instance + */ + public function __construct(Registry $registry) + { + $this->registry = $registry; + $this->db = $this->registry->shared('db'); + } + + /** + * Load automatically models + * + * @access public + * @param string $name Model name + * @return mixed + */ + public function __get($name) + { + return Tool::loadModel($this->registry, $name); + } +} |