Lines Matching defs:info
55 * The raw info array from Active Directory
59 protected $info;
61 public function __construct($info, adLDAP $adldap)
63 $this->setInfo($info);
68 * Set the raw info array from Active Directory
70 * @param array $info
72 public function setInfo(array $info)
74 if ($this->info && sizeof($info) >= 1) {
75 unset($this->info);
77 $this->info = $info;
88 if (isset($this->info[0]) && is_array($this->info[0])) {
89 foreach ($this->info[0] as $keyAttr => $valueAttr) {
91 if ($this->info[0][strtolower($attribute)]['count'] == 1) {
92 return $this->info[0][strtolower($attribute)][0];
96 foreach ($this->info[0][strtolower($attribute)] as $key => $value) {
127 if (isset($this->info[0]) && is_array($this->info[0])) {
128 foreach ($this->info[0] as $keyAttr => $valueAttr) {