Lines Matching defs:attribute
83 * @param string $attribute
86 public function __get($attribute)
90 if (strtolower($keyAttr) == strtolower($attribute)) {
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) {
112 * Magic set method to update an attribute
114 * @param string $attribute
118 abstract public function __set($attribute, $value);
121 * Magic isset method to check for the existence of an attribute
123 * @param string $attribute
126 public function __isset($attribute) {
129 if (strtolower($keyAttr) == strtolower($attribute)) {