| 1 |
<?php |
| 2 |
|
| 3 |
namespace Photonic_Plugin\Lightboxes; |
| 4 |
|
| 5 |
use Photonic_Plugin\Lightboxes\Features\Show_Videos_Inline; |
| 6 |
|
| 7 |
require_once 'Lightbox.php'; |
| 8 |
require_once 'Features/Show_Videos_Inline.php'; |
| 9 |
|
| 10 |
class Magnific extends Lightbox { |
| 11 |
use Show_Videos_Inline; |
| 12 |
|
| 13 |
protected function __construct() { |
| 14 |
$this->library = 'magnific'; |
| 15 |
parent::__construct(); |
| 16 |
} |
| 17 |
} |
| 18 |
|