archive-description-config.php
34 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Elementor; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | class ShopEngine_Archive_Description_Config extends \ShopEngine\Base\Widget_Config |
| 8 | { |
| 9 | |
| 10 | public function get_name() { |
| 11 | return 'archive-description'; |
| 12 | } |
| 13 | |
| 14 | public function get_title() { |
| 15 | return esc_html__('Archive Description', 'shopengine'); |
| 16 | } |
| 17 | |
| 18 | public function get_icon() { |
| 19 | return 'shopengine-widget-icon shopengine-icon-archive_description'; |
| 20 | } |
| 21 | |
| 22 | public function get_categories() { |
| 23 | return ['shopengine-archive']; |
| 24 | } |
| 25 | |
| 26 | public function get_keywords() { |
| 27 | return ['shopengine', 'shop', 'archive', 'description', 'archive description']; |
| 28 | } |
| 29 | |
| 30 | public function get_template_territory() { |
| 31 | return ['shop', 'archive']; |
| 32 | } |
| 33 | } |
| 34 |