product-tabs-config.php
43 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Elementor; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | class ShopEngine_Product_Tabs_Config extends \ShopEngine\Base\Widget_Config { |
| 8 | |
| 9 | public function get_name() { |
| 10 | return 'product-tabs'; |
| 11 | } |
| 12 | |
| 13 | |
| 14 | public function get_title() { |
| 15 | return esc_html__('Product Tabs', 'shopengine'); |
| 16 | } |
| 17 | |
| 18 | |
| 19 | public function get_icon() { |
| 20 | return 'shopengine-widget-icon shopengine-icon-product_tabs'; |
| 21 | } |
| 22 | |
| 23 | |
| 24 | public function get_categories() { |
| 25 | return ['shopengine-single']; |
| 26 | } |
| 27 | |
| 28 | |
| 29 | public function get_keywords() { |
| 30 | return ['shopengine', 'woocommerce', 'product tabs', 'tabs']; |
| 31 | } |
| 32 | |
| 33 | |
| 34 | public function is_reload_preview_required() { |
| 35 | return true; |
| 36 | } |
| 37 | |
| 38 | |
| 39 | public function get_template_territory() { |
| 40 | return ['single', 'quick_view', 'quick_checkout']; |
| 41 | } |
| 42 | } |
| 43 |