Server IP : 192.64.112.168 / Your IP : 3.145.106.176 Web Server : Apache System : Linux nc-ph-2300-85.bluforrest.com 4.18.0-513.9.1.el8_9.x86_64 #1 SMP Sat Dec 2 05:23:44 EST 2023 x86_64 User : expressoneac ( 1128) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/expressoneac/www/wp-content/plugins/elementskit-lite/widgets/ |
Upload File : |
<?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"> Get the <a href="https://wpmet.com/elementskit-pricing" target="_blank">Pro version</a> for more awesome elements and powerful modules.</span>', ] ); $this->end_controls_section(); } } }