dvadf
/home/homerdlh/.trash/header-footer-elementor/inc/widgets-manager/base/common-widget.php
<?php
/**
 * HFECommon Widget.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Base;

use Elementor\Widget_Base;
use HFE\WidgetsManager\Base\HFE_Helper;
use Elementor\Controls_Manager;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Common Widget
 *
 * @since 0.0.1
 */
abstract class Common_Widget extends Widget_Base {

	/**
	 * Get categories
	 *
	 * @since 0.0.1
	 */
	public function get_categories() {
		return [ 'hfe-widgets' ];
	}

	/**
	 * Get widget slug
	 *
	 * @param string $slug Module slug.
	 * @since 0.0.1
	 */
	public function get_widget_slug( $slug = '' ) {
		return HFE_Helper::get_widget_slug( $slug );
	}

	/**
	 * Get widget title
	 *
	 * @param string $slug Module slug.
	 * @since 0.0.1
	 */
	public function get_widget_title( $slug = '' ) {
		return HFE_Helper::get_widget_title( $slug );
	}

	/**
	 * Get widget icon
	 *
	 * @param string $slug Module slug.
	 * @since 0.0.1
	 */
	public function get_widget_icon( $slug = '' ) {
		return HFE_Helper::get_widget_icon( $slug );
	}

	/**
	 * Get widget keywords
	 *
	 * @param string $slug Module slug.
	 * @since 1.5.1
	 */
	public function get_widget_keywords( $slug = '' ) {
		return HFE_Helper::get_widget_keywords( $slug );
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.5.0
	 * @access protected
	 *
	 * @return array|null Widget promotion data.
	 */
	protected function get_upsale_data() {
		return null;
	}

	/**
	 * Is internal link
	 *
	 * @since 1.0.0
	 */
	public function is_internal_links() {
		return HFE_Helper::is_internal_links();
	}

	/**
	 * Get widget help URL
	 *
	 * Retrieve the widget help URL for third-party widgets.
	 * Elementor uses get_custom_help_url() for widgets outside the Elementor namespace.
	 *
	 * @since 2.4.4
	 * @access public
	 *
	 * @return string Widget help URL.
	 */
	public function get_custom_help_url() {
		return HFE_Helper::get_widget_help_url( $this->get_name() );
	}

	/**
	 * Get widget help URL (legacy method)
	 *
	 * Retrieve the widget help URL.
	 * This method is kept for backward compatibility.
	 *
	 * @since 2.4.4
	 * @access public
	 *
	 * @return string Widget help URL.
	 */
	public function get_help_url() {
		// For third-party widgets, Elementor uses get_custom_help_url()
		return $this->get_custom_help_url();
	}
}