# photonic/3.33/Lightboxes/None.php

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

- Page: https://pluginprobe.com/plugins/photonic/3.33/code/Lightboxes/None.php
- Raw: https://pluginprobe.com/plugins/photonic/3.33/raw/Lightboxes/None.php
- Modified: 2022-04-11T23:54:20+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.33/code/Lightboxes/None.php#L10-L20`.

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

```
