Lines Matching refs:property
69 abstract public function setProperty($property, $value); argument
77 public function getProperty($property) { argument
78 …return (isset($this->properties [$property]['value']) ? $this->properties [$property]['value'] : N…
89 public function getPropertyInternal($property, $properties=NULL) { argument
91 return $this->properties [$property]['value'];
93 return $properties [$property]['value'];
103 public function getPropertySection($property) { argument
104 return $this->properties [$property]['section'];
159 … protected function setPropertyInternal($property, $odt_property, $value, $section, &$dest=NULL) { argument
162 $this->properties [$property] = array ('odt_property' => $odt_property,
166 $dest [$property] = array ('odt_property' => $odt_property,
172 unset ($this->properties [$property]);
174 unset ($dest [$property]);
189 foreach ($fields as $property => $field) {
198 $this->setPropertyInternal($property, $field[0], $value, $field[1], $properties);
219 foreach ($properties as $property => $value) {
220 if ($disabled [$property] == 0 && array_key_exists ($property, $fields)) {
221 …$this->setPropertyInternal($property, $fields[$property][0], $value, $fields[$property][1], $dest);