Lines Matching refs:groups
12 * Keeps a copy of all AD groups and provides recursive operations
14 * All groups are cached as full DN here
61 $groups = $this->getGroupList();
62 file_put_contents($cachename, json_encode($groups, JSON_THROW_ON_ERROR));
63 return $groups;
77 $groups = [];
83 return $groups; // return what we have
88 $groups[$dn] = [];
91 $groups[$dn]['parents'] = $parents;
93 $groups[$parent]['children'][] = $dn;
98 return $groups;