| 1 |
<?php |
| 2 |
|
| 3 |
namespace UltimateStoreKit\Modules\SubCategory; |
| 4 |
|
| 5 |
use UltimateStoreKit\Base\Ultimate_Store_Kit_Module_Base; |
| 6 |
|
| 7 |
if (!defined('ABSPATH')) exit; // Exit if accessed directly |
| 8 |
|
| 9 |
class Module extends Ultimate_Store_Kit_Module_Base { |
| 10 |
|
| 11 |
public function get_name() { |
| 12 |
return 'product-sub-category'; |
| 13 |
} |
| 14 |
|
| 15 |
public function get_widgets() { |
| 16 |
|
| 17 |
$widgets = [ |
| 18 |
'Sub_Category', |
| 19 |
]; |
| 20 |
|
| 21 |
return $widgets; |
| 22 |
} |
| 23 |
} |
| 24 |
|