diff options
Diffstat (limited to 'lib/Auth.php')
-rw-r--r-- | lib/Auth.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Auth.php b/lib/Auth.php index 936a8db..b72b7bc 100644 --- a/lib/Auth.php +++ b/lib/Auth.php @@ -176,6 +176,11 @@ class Auth { return $this->_auth[$_SESSION['user']->get_domain()]->get_attribute($subject, $attribute); } + public function get_attributes($subject, $attributes) + { + return $this->_auth[$_SESSION['user']->get_domain()]->get_attributes($subject, $attributes); + } + public function group_add($attributes, $type=NULL) { return $this->_auth[$_SESSION['user']->get_domain()]->group_add($attributes, $type); @@ -288,11 +293,6 @@ class Auth { return $this->_auth[$_SESSION['user']->get_domain()]->user_find_by_attribute($attribute); } - public function user_attributes($user, $attributes) - { - return $this->_auth[$_SESSION['user']->get_domain()]->user_attributes($user, $attributes); - } - public function user_info($userdata) { return $this->_auth[$_SESSION['user']->get_domain()]->user_info($userdata); |