diff options
Diffstat (limited to 'includes/AuthPlugin.php')
-rw-r--r-- | includes/AuthPlugin.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/includes/AuthPlugin.php b/includes/AuthPlugin.php index a4658176..84cf3d5e 100644 --- a/includes/AuthPlugin.php +++ b/includes/AuthPlugin.php @@ -213,6 +213,19 @@ class AuthPlugin { } /** + * Update user groups in the external authentication database. + * Return true if successful. + * + * @param $user User object. + * @param $addgroups Groups to add. + * @param $delgroups Groups to remove. + * @return Boolean + */ + public function updateExternalDBGroups( $user, $addgroups, $delgroups = array() ) { + return true; + } + + /** * Check to see if external accounts can be created. * Return true if external accounts can be created. * @return Boolean |