# photonic/3.34/Lightboxes/Image_Lightbox.php

Photonic Gallery &amp; Lightbox for Flickr, SmugMug &amp; Others, version 3.34. 13 lines.

- Page: https://pluginprobe.com/plugins/photonic/3.34/code/Lightboxes/Image_Lightbox.php
- Raw: https://pluginprobe.com/plugins/photonic/3.34/raw/Lightboxes/Image_Lightbox.php
- Modified: 2022-03-28T21:29:30+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.34/code/Lightboxes/Image_Lightbox.php#L10-L20`.

```php
<?php

namespace Photonic_Plugin\Lightboxes;

require_once 'Lightbox.php';

class Image_Lightbox extends Lightbox {
	protected function __construct() {
		$this->library = 'imagelightbox';
		parent::__construct();
	}
}

```
