PluginProbe
Photonic Gallery & Lightbox for Flickr, SmugMug & Others / 3.35
Photonic Gallery & Lightbox for Flickr, SmugMug & Others v3.35
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 2.45 All 140 releases
photonic / Components / Photo.php

Photo.php in Photonic Gallery & Lightbox for Flickr, SmugMug & Others 3.35, at Components/Photo.php

29 lines 620 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Photonic_Plugin\Components;
4
5 class Photo {
6 public string $id = '';
7 public string $thumbnail = '';
8 public string $tile_image = '';
9 public string $main_image = '';
10 public string $download = '';
11
12 public string $title = '';
13 public string $alt_title = '';
14 public string $description = '';
15
16 public string $video = '';
17 public string $mime = '';
18
19 public array $thumb_size = [];
20 public array $tile_size = [];
21 public array $main_size = [];
22
23 public string $taken_on = '';
24 public string $uploaded_on = '';
25
26 public string $main_page = '';
27 public string $buy_link = '';
28 }
29