module.php
23 lines
| 1 | <?php |
| 2 | namespace ElementPack\Modules\ImageStack; |
| 3 | |
| 4 | use ElementPack\Base\Element_Pack_Module_Base; |
| 5 | |
| 6 | if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
| 7 | |
| 8 | class Module extends Element_Pack_Module_Base { |
| 9 | |
| 10 | public function get_name() { |
| 11 | return 'image-stack'; |
| 12 | } |
| 13 | |
| 14 | public function get_widgets() { |
| 15 | |
| 16 | $widgets = [ |
| 17 | 'Image_Stack', |
| 18 | ]; |
| 19 | |
| 20 | return $widgets; |
| 21 | } |
| 22 | } |
| 23 |