STRATO-apps/wordpress_03/app/wp-content/plugins/bdthemes-element-pack/modules/brand-grid/module.php
SHA-256: 7f4aa4d30213c400d22d26b7b5f62ee6018bf595d8b0b9245d006110a8f8d3af
<?php
namespace ElementPack\Modules\BrandGrid;
use ElementPack\Base\Element_Pack_Module_Base;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class Module extends Element_Pack_Module_Base {
public function get_name() {
return 'brand-grid';
}
public function get_widgets() {
$widgets = [
'Brand_Grid',
];
return $widgets;
}
}