# photonic/2.43/Lightboxes/Image_Lightbox.php

Photonic Gallery &amp; Lightbox for Flickr, SmugMug &amp; Others, version 2.43. 11 lines.

- Page: https://pluginprobe.com/plugins/photonic/2.43/code/Lightboxes/Image_Lightbox.php
- Raw: https://pluginprobe.com/plugins/photonic/2.43/raw/Lightboxes/Image_Lightbox.php
- Modified: 2020-05-12T15:39:52+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/2.43/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();
	}
}
```
