PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 1.2.1
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v1.2.1
2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 1.8.1 All 42 releases
sellkit / includes / elementor / base / base-widget.php

base-widget.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 1.2.1, at includes/elementor/base/base-widget.php

46 lines 646 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || die();
4
5 use Elementor\Element_Base;
6 use Elementor\Widget_Base;
7
8 /**
9 * Sellkit Elementor Base Widget.
10 *
11 * @since 1.1.0
12 */
13 abstract class Sellkit_Elementor_Base_Widget extends Widget_Base {
14
15 /**
16 * Check If the widget is active.
17 *
18 * @since 1.1.0
19 * @return bool
20 */
21 public static function is_active() {
22 return true;
23 }
24
25 /**
26 * Get all the cargories.
27 *
28 * @since 1.1.0
29 * @return array
30 */
31 public function get_categories() {
32 return [ 'sellkit' ];
33 }
34
35 /**
36 * Get all of the keywords.
37 *
38 * @since 1.1.0
39 * @return array
40 */
41 public function get_keywords() {
42 return [ 'sellkit' ];
43 }
44
45 }
46