Lines Matching refs:obj
104 foreach($this->settings as $key => $obj) {
106 if($obj->update($value)) {
109 if($obj->hasError()) $ok = false;
160 $obj = $this->instantiateClass($key);
162 if($obj->shouldHaveDefault() && !isset($this->default[$key])) {
170 $obj->initialize($d, $l, $p);
186 $obj = new $class($key, $param);
187 $this->settings[$key] = $obj;
189 $obj = new SettingUndefined($key);
190 $this->undefined[$key] = $obj;
192 return $obj;