# pixel-gallery/trunk/modules/plex/module.php

Pixel Gallery Addons for Elementor – Easy Grid, Creative Gallery, Drag and Drop Grid, Custom Grid Layout, Portfolio Gallery, version trunk. 22 lines.

- Page: https://pluginprobe.com/plugins/pixel-gallery/trunk/code/modules/plex/module.php
- Raw: https://pluginprobe.com/plugins/pixel-gallery/trunk/raw/modules/plex/module.php
- Modified: 2022-08-09T13:32:32+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/pixel-gallery/trunk/code/modules/plex/module.php#L10-L20`.

```php
<?php
namespace PixelGallery\Modules\Plex;

use PixelGallery\Base\Pixel_Gallery_Module_Base;

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

class Module extends Pixel_Gallery_Module_Base {

	public function get_name() {
		return 'plex';
	}

	public function get_widgets() {
		$widgets = [
			'Plex',
		];

		return $widgets;
	}
}

```
