| 1 | <?php |
||
| 9 | class Translate extends \Phalcon\Mvc\Model |
||
| 10 | { |
||
| 11 | |||
| 12 | public $id; |
||
| 13 | public $foreign_id; |
||
| 14 | public $lang; |
||
| 15 | public $key; |
||
| 16 | public $value; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param mixed $id |
||
| 20 | */ |
||
| 21 | public function setId($id) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | public function getId() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param mixed $foreign_id |
||
| 36 | */ |
||
| 37 | public function setForeignId($foreign_id) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return mixed |
||
| 44 | */ |
||
| 45 | public function getForeignId() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param mixed $key |
||
| 52 | */ |
||
| 53 | public function setKey($key) |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @return mixed |
||
| 60 | */ |
||
| 61 | public function getKey() |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @param mixed $lang |
||
| 68 | */ |
||
| 69 | public function setLang($lang) |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @return mixed |
||
| 76 | */ |
||
| 77 | public function getLang() |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @param mixed $value |
||
| 84 | */ |
||
| 85 | public function setValue($value) |
||
| 89 | |||
| 90 | /** |
||
| 91 | * @return mixed |
||
| 92 | */ |
||
| 93 | public function getValue() |
||
| 97 | |||
| 98 | |||
| 99 | |||
| 100 | } |