# sellkit/trunk/includes/elementor/base/base-widget.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version trunk. 46 lines.

- Page: https://pluginprobe.com/plugins/sellkit/trunk/code/includes/elementor/base/base-widget.php
- Raw: https://pluginprobe.com/plugins/sellkit/trunk/raw/includes/elementor/base/base-widget.php
- Modified: 2025-10-06T16:06:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sellkit/trunk/code/includes/elementor/base/base-widget.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || die();

use Elementor\Element_Base;
use Elementor\Widget_Base;

/**
 * Sellkit Elementor Base Widget.
 *
 * @since 1.1.0
 */
abstract class Sellkit_Elementor_Base_Widget extends Widget_Base {

	/**
	 * Check If the widget is active.
	 *
	 * @since 1.1.0
	 * @return bool
	 */
	public static function is_active() {
		return true;
	}

	/**
	 * Get all the cargories.
	 *
	 * @since 1.1.0
	 * @return array
	 */
	public function get_categories() {
		return [ 'sellkit' ];
	}

	/**
	 * Get all of the keywords.
	 *
	 * @since 1.1.0
	 * @return array
	 */
	public function get_keywords() {
		return [ 'sellkit' ];
	}

}

```
