Lines Matching refs:this

55         $this->id = $id;
57 $this->name = new Name();
58 $this->summary = new Summary();
59 $this->description = new Description();
60 $this->url = new Url();
61 $this->bonus = new Bonus();
62 $this->salesFrequency = new SalesFrequency();
63 $this->dateAdded = new DateAdded();
64 $this->sort = new Sort();
65 $this->keywords = new AllKeywords();
66 $this->ordernumbers = new AllOrdernumbers();
71 return $this->name;
76 $this->name = $name;
81 $this->name->setValue($name, $usergroup);
86 return $this->summary;
91 $this->summary = $summary;
96 $this->summary->setValue($summary, $usergroup);
101 return $this->description;
106 $this->description = $description;
111 $this->description->setValue($description, $usergroup);
116 return $this->price;
121 $this->price = $price;
126 if ($this->price === null) {
127 $this->price = new Price();
130 $this->price->setValue($price, $usergroup);
135 return $this->url;
140 $this->url = $url;
145 $this->url->setValue($url, $usergroup);
150 return $this->bonus;
155 $this->bonus = $bonus;
160 $this->bonus->setValue($bonus, $usergroup);
165 return $this->salesFrequency;
170 $this->salesFrequency = $salesFrequency;
175 $this->salesFrequency->setValue($salesFrequency, $usergroup);
180 return $this->dateAdded;
185 $this->dateAdded = $dateAdded;
190 $this->dateAdded->setDateValue($dateAdded, $usergroup);
195 return $this->sort;
200 $this->sort = $sort;
205 $this->sort->setValue($sort, $usergroup);
211 if (!array_key_exists($usergroup, $this->properties)) {
212 $this->properties[$usergroup] = [];
217 $this->properties[$usergroup][$property->getKey()] = $value;
223 $this->attributes[$attribute->getKey()] = $attribute;
228 if (!array_key_exists($image->getUsergroup(), $this->images)) {
229 $this->images[$image->getUsergroup()] = [];
232 array_push($this->images[$image->getUsergroup()], $image);
238 $this->addImage($image);
244 $this->ordernumbers->addValue($ordernumber);
249 $this->ordernumbers->setAllValues($ordernumbers);
254 $this->keywords->addValue($keyword);
259 $this->keywords->setAllValues($keywords);
264 array_push($this->usergroups, $usergroup);
269 $this->usergroups = $usergroups;