From b4e9f6795206fab6b952f814ccf812677a34c635 Mon Sep 17 00:00:00 2001 From: xue <> Date: Wed, 7 Dec 2005 00:32:29 +0000 Subject: --- framework/Security/TAuthManager.php | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) (limited to 'framework/Security/TAuthManager.php') diff --git a/framework/Security/TAuthManager.php b/framework/Security/TAuthManager.php index ae3f713f..3bf6964e 100644 --- a/framework/Security/TAuthManager.php +++ b/framework/Security/TAuthManager.php @@ -34,16 +34,12 @@ Prado::using('System.Security.TUserManager'); * @package System.Security * @since 3.0 */ -class TAuthManager extends TComponent implements IModule +class TAuthManager extends TModule { /** * GET variable name for return url */ const RETURN_URL_VAR='ReturnUrl'; - /** - * @var string module ID - */ - private $_id; /** * @var boolean if the module has been initialized */ @@ -65,22 +61,6 @@ class TAuthManager extends TComponent implements IModule */ private $_skipAuthorization=false; - /** - * @return string id of this module - */ - public function getID() - { - return $this->_id; - } - - /** - * @param string id of this module - */ - public function setID($value) - { - $this->_id=$value; - } - /** * Initializes this module. * This method is required by the IModule interface. @@ -90,6 +70,8 @@ class TAuthManager extends TComponent implements IModule */ public function init($application,$config) { + parent::init($application,$config); + if($this->_userManager===null) throw new TConfigurationException('authmanager_usermanager_required'); if(is_string($this->_userManager)) -- cgit v1.2.3