| 1 | <?php |
||
| 15 | class Questioncategory extends AbstractModel |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Title. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | * @db |
||
| 22 | */ |
||
| 23 | protected $title; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Parent. |
||
| 27 | * |
||
| 28 | * @var \HDNET\Faq\Domain\Model\Questioncategory |
||
| 29 | * @db int(11) DEFAULT '0' NOT NULL |
||
| 30 | */ |
||
| 31 | protected $parent; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var int |
||
| 35 | */ |
||
| 36 | protected $_languageUid = 0; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Set the title. |
||
| 40 | * |
||
| 41 | * @param string $title |
||
| 42 | */ |
||
| 43 | public function setTitle($title) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Get the title. |
||
| 50 | * |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | public function getTitle() |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Set the parent. |
||
| 60 | * |
||
| 61 | * @param \HDNET\Faq\Domain\Model\Questioncategory $parent |
||
| 62 | */ |
||
| 63 | public function setParent($parent) |
||
| 67 | |||
| 68 | /** |
||
| 69 | * Get the parent. |
||
| 70 | * |
||
| 71 | * @return \HDNET\Faq\Domain\Model\Questioncategory |
||
| 72 | */ |
||
| 73 | public function getParent() |
||
| 77 | |||
| 78 | /** |
||
| 79 | * Public getter for the languageUid |
||
| 80 | * @return int |
||
| 81 | */ |
||
| 82 | public function getLanguageUid() |
||
| 86 | } |
||
| 87 |