| Server IP : 104.26.4.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/buzzbitesv3/public_html/wp-content/plugins/metform/widgets/ |
Upload File : |
<?php
namespace MetForm\Widgets;
defined( 'ABSPATH' ) || exit;
trait Widget_Notice{
/**
* Adding Go Pro message to all widgets
*/
public function insert_pro_message()
{
if(!class_exists('\MetForm_Pro\Plugin')){
$this->start_controls_section(
'ekit_section_pro',
[
'label' => __('Go Pro for More Features', 'metform'),
]
);
$this->add_control(
'ekit_control_get_pro',
[
'label' => __('Unlock more possibilities', 'metform'),
'type' => \Elementor\Controls_Manager::CHOOSE,
'options' => [
'1' => [
'title' => '',
'icon' => 'fa fa-unlock-alt',
],
],
'default' => '1',
'description' => '<span class="mf-widget-pro-feature"> ' . sprintf(
/* translators: %1$s: opening anchor tag for the Pro version link, %2$s: closing anchor tag. */
esc_html__('Get the %1$sPro version%2$s for more awesome elements and powerful modules.', 'metform'),
'<a href="https://wpmet.com/plugin/metform/pricing/" target="_blank">',
'</a>'
) . '</span>',
]
);
$this->end_controls_section();
}
}
}