notice.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Elementor; |
| 4 | |
| 5 | use ShopEngine\Widgets\Products; |
| 6 | |
| 7 | defined('ABSPATH') || exit; |
| 8 | |
| 9 | class ShopEngine_Notice extends \ShopEngine\Base\Widget { |
| 10 | |
| 11 | public function config() { |
| 12 | return new ShopEngine_Notice_Config(); |
| 13 | } |
| 14 | |
| 15 | protected function register_controls() { } |
| 16 | |
| 17 | protected function screen() { |
| 18 | $tpl = Products::instance()->get_widget_template($this->get_name()); |
| 19 | include $tpl; |
| 20 | } |
| 21 | } |
| 22 |