# photonic/3.37/Lightboxes/Magnific.php

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

- Page: https://pluginprobe.com/plugins/photonic/3.37/code/Lightboxes/Magnific.php
- Raw: https://pluginprobe.com/plugins/photonic/3.37/raw/Lightboxes/Magnific.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.37/code/Lightboxes/Magnific.php#L10-L20`.

```php
<?php

namespace Photonic_Plugin\Lightboxes;

use Photonic_Plugin\Lightboxes\Features\Show_Videos_Inline;

require_once 'Lightbox.php';
require_once 'Features/Show_Videos_Inline.php';

class Magnific extends Lightbox {
	use Show_Videos_Inline;

	protected function __construct() {
		$this->library = 'magnific';
		parent::__construct();
	}
}

```
