HEX
Server: LiteSpeed
System: Linux premium263.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
User: eastcjee (525)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/plugins/elementskit-lite/widgets/widget-notice.php
<?php 
namespace ElementsKit_Lite\Widgets;
defined( 'ABSPATH' ) || exit;

trait Widget_Notice{
    /**
     * Adding Go Premium message to all widgets
     *
     * @since 1.4.2
     */
    public function insert_pro_message()
    {
        if(\ElementsKit_Lite::package_type() != 'pro'){
            $this->start_controls_section(
                'ekit_section_pro',
                [
                    'label' => __('Go Premium for More Features', 'elementskit-lite'),
                ]
            );

            $this->add_control(
                'ekit_control_get_pro',
                [
                    'label' => __('Unlock more possibilities', 'elementskit-lite'),
                    'type' => \Elementor\Controls_Manager::CHOOSE,
                    'options' => [
                        '1' => [
                            'title' => '',
                            'icon' => 'fa fa-unlock-alt',
                        ],
                    ],
                    'default' => '1',
                    'toggle'    => false,
                    'description' => '<span class="ekit-widget-pro-feature">' . sprintf(
                        /* translators: 1: opening <a> tag, 2: closing </a> tag */
                        esc_html__( 'Get the %1$s Pro version %2$s for more awesome elements and powerful modules.', 'elementskit-lite' ),
                        '<a href="' . esc_url( 'https://wpmet.com/elementskit-pricing' ) . '" target="_blank" rel="noopener noreferrer">',
                        '</a>'
                    ) . '</span>',
                ]
            );

            $this->end_controls_section();
        }
    }
}