| 1 | <?php |
||
| 14 | class ImageNode extends AbstractModel |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Location |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $loc; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Caption |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $caption; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Title |
||
| 33 | * |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | protected $title; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * License |
||
| 40 | * |
||
| 41 | * @var string |
||
| 42 | */ |
||
| 43 | protected $license; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get location |
||
| 47 | * |
||
| 48 | * @return string |
||
| 49 | */ |
||
| 50 | public function getLoc() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Get caption |
||
| 57 | * |
||
| 58 | * @return string |
||
| 59 | */ |
||
| 60 | public function getCaption() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Get title |
||
| 67 | * |
||
| 68 | * @return string |
||
| 69 | */ |
||
| 70 | public function getTitle() |
||
| 74 | |||
| 75 | /** |
||
| 76 | * Get license |
||
| 77 | * |
||
| 78 | * @return string |
||
| 79 | */ |
||
| 80 | public function getLicense() |
||
| 84 | |||
| 85 | /** |
||
| 86 | * Set location |
||
| 87 | * |
||
| 88 | * @param string $loc |
||
| 89 | * |
||
| 90 | * @throws \Exception |
||
| 91 | */ |
||
| 92 | public function setLoc($loc) |
||
| 99 | |||
| 100 | /** |
||
| 101 | * Set caption |
||
| 102 | * |
||
| 103 | * @param string $caption |
||
| 104 | */ |
||
| 105 | public function setCaption($caption) |
||
| 109 | |||
| 110 | /** |
||
| 111 | * Set title |
||
| 112 | * |
||
| 113 | * @param string $title |
||
| 114 | */ |
||
| 115 | public function setTitle($title) |
||
| 119 | |||
| 120 | /** |
||
| 121 | * Set license |
||
| 122 | * |
||
| 123 | * @param string $license |
||
| 124 | */ |
||
| 125 | public function setLicense($license) |
||
| 129 | } |
||
| 130 |