Lines Matching refs:group
21 /** @var array List of group DNs and their parent and children */
42 * Use a file system cached version of the group hierarchy
67 * Load all group information from AD
73 $filter = Filters::equal('objectCategory', 'group');
104 * @param string $group
108 protected function getHierarchy($group, $type, &$data)
110 if (empty($this->groupHierarchy[$group][$type])) return;
112 $parents = $this->groupHierarchy[$group][$type];
121 * Get all parents of a group
123 * @param string $group
126 public function getParents($group)
129 $this->getHierarchy($group, 'parents', $parents);
134 * Get all children of a group
136 * @param string $group
139 public function getChildren($group)
142 $this->getHierarchy($group, 'children', $children);