screens
3 years ago
additional-information-config.php
3 years ago
additional-information.php
3 years ago
additional-information-config.php
34 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Elementor; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | class ShopEngine_Additional_Information_Config extends \ShopEngine\Base\Widget_Config |
| 8 | { |
| 9 | |
| 10 | public function get_name() { |
| 11 | return 'additional-information'; |
| 12 | } |
| 13 | |
| 14 | public function get_title() { |
| 15 | return esc_html__('Product Additional Information', 'shopengine'); |
| 16 | } |
| 17 | |
| 18 | public function get_icon() { |
| 19 | return 'shopengine-widget-icon shopengine-icon-additional_info'; |
| 20 | } |
| 21 | |
| 22 | public function get_categories() { |
| 23 | return ['shopengine-single']; |
| 24 | } |
| 25 | |
| 26 | public function get_keywords() { |
| 27 | return ['shopengine', 'woocommerce', 'additional information', 'single product']; |
| 28 | } |
| 29 | |
| 30 | public function get_template_territory() { |
| 31 | return ['single', 'quick_view', 'account_orders_view', 'quick_checkout']; |
| 32 | } |
| 33 | } |
| 34 |