# photonic/3.37/Components/Photo.php

Photonic Gallery &amp; Lightbox for Flickr, SmugMug &amp; Others, version 3.37. 29 lines.

- Page: https://pluginprobe.com/plugins/photonic/3.37/code/Components/Photo.php
- Raw: https://pluginprobe.com/plugins/photonic/3.37/raw/Components/Photo.php
- Modified: 2026-07-23T21:21:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/photonic/3.37/code/Components/Photo.php#L10-L20`.

```php
<?php

namespace Photonic_Plugin\Components;

class Photo {
	public string $id = '';
	public string $thumbnail = '';
	public string $tile_image = '';
	public string $main_image = '';
	public string $download = '';

	public string $title = '';
	public string $alt_title = '';
	public string $description = '';

	public string $video = '';
	public string $mime = '';

	public array $thumb_size = [];
	public array $tile_size = [];
	public array $main_size = [];

	public string $taken_on = '';
	public string $uploaded_on = '';

	public string $main_page = '';
	public string $buy_link = '';
}

```
