????
Current Path : /home/rsfshcom/public_html/wp-content/plugins/metform/widgets/button/ |
Current File : //home/rsfshcom/public_html/wp-content/plugins/metform/widgets/button/button.php |
<?php namespace Elementor; defined( 'ABSPATH' ) || exit; Class MetForm_Input_Button extends Widget_Base{ use \MetForm\Traits\Button_Controls; use \MetForm\Traits\Conditional_Controls; use \MetForm\Widgets\Widget_Notice; public function get_name() { return 'mf-button'; } public function get_title() { return esc_html__( 'Submit Button', 'metform' ); } public function show_in_panel() { return 'metform-form' == get_post_type(); } public function get_categories() { return [ 'metform' ]; } public function get_keywords() { return ['metform', 'button', 'submit', 'submit button']; } public function get_help_url() { return 'https://wpmet.com/doc/form-widgets/#-submit-button--'; } protected function register_controls() { $this->start_controls_section( 'mf_btn_section_content', [ 'label' => esc_html__( 'Content', 'metform' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->button_content_control(); $this->end_controls_section(); if(class_exists('\MetForm_Pro\Base\Package')){ $this->input_conditional_control(); } $this->start_controls_section( 'mf_btn_hidden_input_content', [ 'label' => esc_html__( 'Hidden', 'metform' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->hidden_input_content_control(); $this->end_controls_section(); $this->start_controls_section( 'mf_btn_section_style', [ 'label' =>esc_html__( 'Button', 'metform' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->button_style_control(); $this->end_controls_section(); $this->start_controls_section( 'mf_btn_border_style_tabs', [ 'label' =>esc_html__( 'Border', 'metform' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->button_border_control(); $this->end_controls_section(); $this->start_controls_section( 'mf_btn_box_shadow_style', [ 'label' =>esc_html__( 'Shadow', 'metform' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->button_shadow_control(); $this->end_controls_section(); $this->start_controls_section( 'mf_btn_iconw_style', [ 'label' =>esc_html__( 'Icon', 'metform' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => ['mf_btn_icon!' => ''] ] ); $this->button_icon_control(); $this->end_controls_section(); $this->insert_pro_message(); } protected function render($instance = []){ $settings = $this->get_settings_for_display(); $render_on_editor = false; $is_edit_mode = 'metform-form' === get_post_type() && \Elementor\Plugin::$instance->editor->is_edit_mode(); $btn_text = $settings['mf_btn_text']; $icon_align = $settings['mf_btn_icon_align']; $class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : ''); $hidden_inputs = isset($settings['mf_hidden_input']) ? $settings['mf_hidden_input'] : ''; if(!empty($hidden_inputs)){ foreach($hidden_inputs as $input){ $input = (object) $input; ?> <input type="hidden" name="<?php echo esc_attr( $input->mf_hidden_input_name ); ?>" class="<?php echo esc_attr( $input->mf_hidden_input_class ); ?>" value="<?php echo esc_attr( $input->mf_hidden_input_value ); ?>" ref=${parent.setDefault} /> <?php } } $this->add_render_attribute( 'button', [ 'type' => 'submit', 'class' => 'metform-btn metform-submit-btn ' . $settings['mf_btn_class'], 'id' => htmlspecialchars( wp_kses_post( $settings['mf_btn_id'] ) ), ] ); ?> <div class="mf-btn-wraper <?php echo esc_attr($class); ?>" data-mf-form-conditional-logic-requirement="<?php echo esc_attr(isset($settings['mf_conditional_logic_form_and_or_operators']) ? $settings['mf_conditional_logic_form_and_or_operators'] : ''); ?>"> <?php if($icon_align == 'right'): ?> <button <?php echo wp_kses($this->get_render_attribute_string( 'button' ), []); ?>> <span><?php echo esc_html(\MetForm\Utils\Util::react_entity_support($btn_text, $render_on_editor )); ?></span> <?php if($settings['mf_btn_icon']['value'] != ''): ?><?php Icons_Manager::render_icon( $settings['mf_btn_icon'], [ 'aria-hidden' => 'true' ] ); ?><?php endif; ?> </button> <?php elseif ($icon_align == 'left') : ?> <button <?php echo wp_kses($this->get_render_attribute_string( 'button' ), []); ?>> <?php if($settings['mf_btn_icon']['value'] != ''): ?><?php Icons_Manager::render_icon( $settings['mf_btn_icon'], [ 'aria-hidden' => 'true' ] ); ?><?php endif; ?> <span><?php echo esc_html(\MetForm\Utils\Util::react_entity_support($btn_text, $render_on_editor )); ?></span> </button> <?php else : ?> <button <?php echo wp_kses($this->get_render_attribute_string( 'button' ), []); ?>> <span><?php echo esc_html(\MetForm\Utils\Util::react_entity_support($btn_text, $render_on_editor )); ?></span> </button> <?php endif; ?> </div> <?php } }