summaryrefslogtreecommitdiff
path: root/modules/gallery/libraries/drivers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-20 17:01:19 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-20 17:01:19 -0700
commit3ece1a01f25270939b3c12f754d555d6ac54d375 (patch)
tree2e802e5430b42ea1d5f64d13e5503f1a06d6bfcd /modules/gallery/libraries/drivers
parent7f9441c33da07b215efcb51668434b3957559fd3 (diff)
Add a groups api method on the Identity provider and change access_Core::_get_all_groups() to use this to get the defined groups.
Diffstat (limited to 'modules/gallery/libraries/drivers')
-rw-r--r--modules/gallery/libraries/drivers/Identity.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/gallery/libraries/drivers/Identity.php b/modules/gallery/libraries/drivers/Identity.php
index 2fc4d349..b77eb6be 100644
--- a/modules/gallery/libraries/drivers/Identity.php
+++ b/modules/gallery/libraries/drivers/Identity.php
@@ -97,6 +97,11 @@ interface Identity_Driver {
*/
public function get_user_list($ids);
+ /**
+ * List the groups defined in the Identity Provider
+ */
+ static function groups();
+
} // End Identity Driver Definition
interface Group_Definition {}