group LDAP: implement groupExists function, needed for Sharing

remotes/origin/stable4
Arthur Schiwon 13 years ago
parent 320fde9eec
commit ed54de1bbf
  1. 9
      apps/user_ldap/group_ldap.php

@ -103,6 +103,15 @@ class OC_GROUP_LDAP extends OC_Group_Backend {
}
}
/**
* check if a group exists
* @param string $gid
* @return bool
*/
public function groupExists($gid){
return in_array($gid, $this->getGroups());
}
private function retrieveList($filter, $attr) {
$list = OC_LDAP::search($filter, $attr);

Loading…
Cancel
Save