| 1 | <?php |
||
| 5 | class Category extends AbstractModel |
||
| 6 | { |
||
| 7 | protected $categoryId; |
||
| 8 | protected $name; |
||
| 9 | protected $seoTitle; |
||
| 10 | protected $descriptionHtml; |
||
| 11 | protected $imageFileName; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @return categoryId |
||
| 15 | */ |
||
| 16 | public function getCategoryId() |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param $categoryId |
||
| 23 | * @return self |
||
| 24 | */ |
||
| 25 | 3 | public function setCategoryId($categoryId) |
|
| 26 | { |
||
| 27 | 3 | $this->categoryId = $categoryId; |
|
| 28 | 3 | return $this; |
|
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return name |
||
| 33 | */ |
||
| 34 | public function getName() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param $name |
||
| 41 | * @return self |
||
| 42 | */ |
||
| 43 | 3 | public function setName($name) |
|
| 44 | { |
||
| 45 | 3 | $this->name = $name; |
|
| 46 | 3 | return $this; |
|
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return seoTitle |
||
| 51 | */ |
||
| 52 | public function getSeoTitle() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @param $seoTitle |
||
| 59 | * @return self |
||
| 60 | */ |
||
| 61 | 3 | public function setSeoTitle($seoTitle) |
|
| 62 | { |
||
| 63 | 3 | $this->seoTitle = $seoTitle; |
|
| 64 | 3 | return $this; |
|
| 65 | } |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return imageFileName |
||
| 69 | */ |
||
| 70 | public function getImageFileName() |
||
| 74 | |||
| 75 | /** |
||
| 76 | * @param $imageFileName |
||
| 77 | * @return self |
||
| 78 | */ |
||
| 79 | 3 | public function setImageFileName($imageFileName) |
|
| 80 | { |
||
| 81 | 3 | $this->imageFileName = $imageFileName; |
|
| 82 | 3 | return $this; |
|
| 83 | } |
||
| 84 | |||
| 85 | /** |
||
| 86 | * @return descriptionHtml |
||
| 87 | */ |
||
| 88 | public function getDescriptionHtml() |
||
| 92 | |||
| 93 | /** |
||
| 94 | * @param $descriptionHtml |
||
| 95 | * @return self |
||
| 96 | */ |
||
| 97 | 3 | public function setDescriptionHtml($descriptionHtml) |
|
| 102 | } |
||
| 103 |