PluginProbe
Photonic Gallery & Lightbox for Flickr, SmugMug & Others / 2.40
Photonic Gallery & Lightbox for Flickr, SmugMug & Others v2.40
3.36 3.35 3.34 3.33 2.19 2.20 2.21 2.22 2.23 2.24 2.25 2.26 2.27 2.28 2.29 2.30 2.31 2.32 2.33 2.34 2.40 2.41 2.42 2.43 2.44 All 141 releases
photonic / Structures / Photo.php

Photo.php in Photonic Gallery & Lightbox for Flickr, SmugMug & Others 2.40, at Structures/Photo.php

175 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Photonic_Plugin\Structures;
3
4 class Photo {
5 var $id, $thumbnail, $main_image, $tile_image, $download, $alt_title, $main_page, $title, $description, $video, $mime, $provider;
6
7 /**
8 * @return mixed
9 */
10 public function get_id() {
11 return $this->id;
12 }
13
14 /**
15 * @param mixed $id
16 */
17 public function set_id($id) {
18 $this->id = $id;
19 }
20
21 /**
22 * @return mixed
23 */
24 public function get_thumbnail() {
25 return $this->thumbnail;
26 }
27
28 /**
29 * @param mixed $thumbnail
30 */
31 public function set_thumbnail($thumbnail) {
32 $this->thumbnail = $thumbnail;
33 }
34
35 /**
36 * @return mixed
37 */
38 public function get_main_image() {
39 return $this->main_image;
40 }
41
42 /**
43 * @param mixed $main_image
44 */
45 public function set_main_image($main_image) {
46 $this->main_image = $main_image;
47 }
48
49 /**
50 * @return mixed
51 */
52 public function get_tile_image() {
53 return $this->tile_image;
54 }
55
56 /**
57 * @param mixed $tile_image
58 */
59 public function set_tile_image($tile_image) {
60 $this->tile_image = $tile_image;
61 }
62
63 /**
64 * @return mixed
65 */
66 public function get_download() {
67 return $this->download;
68 }
69
70 /**
71 * @param mixed $download
72 */
73 public function set_download($download) {
74 $this->download = $download;
75 }
76
77 /**
78 * @return mixed
79 */
80 public function get_alt_title() {
81 return $this->alt_title;
82 }
83
84 /**
85 * @param mixed $alt_title
86 */
87 public function set_alt_title($alt_title) {
88 $this->alt_title = $alt_title;
89 }
90
91 /**
92 * @return mixed
93 */
94 public function get_main_page() {
95 return $this->main_page;
96 }
97
98 /**
99 * @param mixed $main_page
100 */
101 public function set_main_page($main_page) {
102 $this->main_page = $main_page;
103 }
104
105 /**
106 * @return mixed
107 */
108 public function get_title() {
109 return $this->title;
110 }
111
112 /**
113 * @param mixed $title
114 */
115 public function set_title($title) {
116 $this->title = $title;
117 }
118
119 /**
120 * @return mixed
121 */
122 public function get_description() {
123 return $this->description;
124 }
125
126 /**
127 * @param mixed $description
128 */
129 public function set_description($description) {
130 $this->description = $description;
131 }
132
133 /**
134 * @return mixed
135 */
136 public function get_video() {
137 return $this->video;
138 }
139
140 /**
141 * @param mixed $video
142 */
143 public function set_video($video) {
144 $this->video = $video;
145 }
146
147 /**
148 * @return mixed
149 */
150 public function get_mime() {
151 return $this->mime;
152 }
153
154 /**
155 * @param mixed $mime
156 */
157 public function set_mime($mime) {
158 $this->mime = $mime;
159 }
160
161 /**
162 * @return mixed
163 */
164 public function get_provider() {
165 return $this->provider;
166 }
167
168 /**
169 * @param mixed $provider
170 */
171 public function set_provider($provider) {
172 $this->provider = $provider;
173 }
174
175 }