1 | <?php |
||
11 | trait ImageObjectTrait |
||
12 | { |
||
13 | use MediaObjectTrait; |
||
14 | |||
15 | private $_caption; |
||
16 | |||
17 | public function setCaption($caption) |
||
22 | |||
23 | public function getCaption() |
||
27 | |||
28 | private $_exifData; |
||
29 | |||
30 | public function setExifData(PropertyValue $propertyValue) |
||
36 | |||
37 | public function getExifData() |
||
41 | |||
42 | private $_representativeOfPage; |
||
43 | |||
44 | public function setRepresentativeOfPage($representativeOfPage) |
||
50 | |||
51 | public function getRepresentativeOfPage() |
||
55 | |||
56 | private $_thumbnail; |
||
57 | |||
58 | public function setThumbnail(ImageObject $imageObject) |
||
64 | |||
65 | public function getThumbnail() |
||
69 | } |