Файловый менеджер - Редактировать - /home/adiggxhn/ics.gt/wp-content/plugins/bdthemes-element-pack/modules/webhook-form/widgets/webhook-form.php
Ðазад
<?php namespace ElementPack\Modules\WebhookForm\Widgets; use Elementor\Controls_Manager; use Elementor\Group_Control_Background; use Elementor\Group_Control_Border; use Elementor\Group_Control_Box_Shadow; use Elementor\Group_Control_Typography; use Elementor\Repeater; use ElementPack\Base\Module_Base; if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly class Webhook_Form extends Module_Base { public function get_name() { return 'bdt-webhook-form'; } public function get_title() { return BDTEP . esc_html__( 'Webhook Form', 'bdthemes-element-pack' ); } public function get_icon() { return 'bdt-wi-webhook-form'; } public function get_categories() { return [ 'element-pack' ]; } public function get_keywords() { return [ 'custom', 'advanced', 'webhook', 'form', 'builder' ]; } public function get_style_depends() { if ( $this->ep_is_edit_mode() ) { return [ 'ep-styles' ]; } else { return [ 'ep-webhook-form' ]; } } public function get_script_depends() { if ( $this->ep_is_edit_mode() ) { return [ 'ep-scripts' ]; } else { $ep_api_settings = get_option( 'element_pack_api_settings' ); if ( ! empty( $ep_api_settings['recaptcha_site_key'] ) and ! empty( $ep_api_settings['recaptcha_secret_key'] ) ) { return [ 'recaptcha', 'ep-webhook-form' ]; } else { return [ 'ep-webhook-form' ]; } } } public function get_custom_help_url() { return 'https://youtu.be/l6h9xFh723A?si=4RICL4bZap5i9fQo'; } public function has_widget_inner_wrapper(): bool { return ! \Elementor\Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' ); } protected function is_dynamic_content(): bool { return true; } protected function register_controls() { $this->start_controls_section( 'section_webhook', [ 'label' => esc_html__( 'Webhook URL', 'bdthemes-element-pack' ), ] ); $this->add_control( 'webhook_url', [ 'label' => esc_html__( 'URL', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXTAREA, 'dynamic' => [ 'active' => true ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_security_fields', [ 'label' => esc_html__( 'Security Fields', 'bdthemes-element-pack' ), ] ); $repeater = new Repeater(); $repeater->add_control( 'security_field_name', [ 'label' => esc_html__( 'Field Name', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'placeholder' => esc_html__( 'field_name', 'bdthemes-element-pack' ), 'dynamic' => [ 'active' => true ], ] ); $repeater->add_control( 'security_field_value', [ 'label' => esc_html__( 'Value', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXTAREA, 'dynamic' => [ 'active' => true ], ] ); $repeater->add_control( 'security_data_position', [ 'label' => esc_html__( 'Data Position', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'body' => esc_html__( 'Body', 'bdthemes-element-pack' ), 'header' => esc_html__( 'Header', 'bdthemes-element-pack' ), ], 'default' => 'body', ] ); $this->add_control( 'secuirty_fields', [ 'type' => Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'prevent_empty' => false, 'default' => [ [ 'security_field_name' => 'X-Auth-Token', 'security_field_value' => '1234567890', 'security_data_position' => 'header', ], ], 'title_field' => '{{{ security_field_name }}}', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_form_fields', [ 'label' => esc_html__( 'Form Fields', 'bdthemes-element-pack' ), ] ); $repeater = new Repeater(); $field_types = [ 'text' => esc_html__( 'Text', 'bdthemes-element-pack' ), 'number' => esc_html__( 'Number', 'bdthemes-element-pack' ), 'email' => esc_html__( 'Email', 'bdthemes-element-pack' ), 'textarea' => esc_html__( 'Textarea', 'bdthemes-element-pack' ), 'hidden' => esc_html__( 'Hidden', 'bdthemes-element-pack' ), 'disabled' => esc_html__( 'Disabled', 'bdthemes-element-pack' ), 'select' => esc_html__( 'Select', 'bdthemes-element-pack' ), 'radio' => esc_html__( 'Radio', 'bdthemes-element-pack' ), 'date' => esc_html__( 'Date', 'bdthemes-element-pack' ), ]; $repeater->start_controls_tabs( 'form_fields_tabs' ); $repeater->start_controls_tab( 'form_fields_content_tab', [ 'label' => esc_html__( 'Content', 'bdthemes-element-pack' ), ] ); $repeater->add_control( 'field_type', [ 'label' => esc_html__( 'Type', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'options' => $field_types, 'default' => 'number', ] ); $repeater->add_control( 'field_label', [ 'label' => esc_html__( 'Label', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'dynamic' => [ 'active' => true ], ] ); $repeater->add_control( 'field_name', [ 'label' => esc_html__( 'Field Name', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'description' => esc_html__( 'Enter the field name. It must be unique and only use lowercase letters, numbers and underscores (Same as Params).', 'bdthemes-element-pack' ), 'dynamic' => [ 'active' => true ], ] ); $repeater->add_control( 'placeholder', [ 'label' => esc_html__( 'Placeholder', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'default' => '', 'dynamic' => [ 'active' => true ], 'conditions' => [ 'terms' => [ [ 'name' => 'field_type', 'operator' => 'in', 'value' => [ 'text', 'number', 'email', ], ], ], ], ] ); $repeater->add_control( 'field_options', [ 'label' => esc_html__( 'Options', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXTAREA, 'default' => '', 'description' => esc_html__( 'Enter each option in a separate line. To differentiate between label and value, separate them with a pipe char ("|"). For example: First Name|f_name', 'bdthemes-element-pack' ), 'dynamic' => [ 'active' => true ], 'conditions' => [ 'terms' => [ [ 'name' => 'field_type', 'operator' => 'in', 'value' => [ 'select', 'checkbox', 'radio', ], ], ], ], ] ); $repeater->add_control( 'inline_list', [ 'label' => esc_html__( 'Inline List', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, 'conditions' => [ 'terms' => [ [ 'name' => 'field_type', 'operator' => 'in', 'value' => [ 'checkbox', 'radio', ], ], ], ], ] ); $repeater->add_responsive_control( 'width', [ 'label' => esc_html__( 'Column Width', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'options' => [ '' => esc_html__( 'Default', 'bdthemes-element-pack' ), '100' => '100%', '80' => '80%', '75' => '75%', '70' => '70%', '66' => '66%', '60' => '60%', '50' => '50%', '40' => '40%', '33' => '33%', '30' => '30%', '25' => '25%', '20' => '20%', ], 'default' => '100', 'conditions' => [ 'terms' => [ [ 'name' => 'field_type', 'operator' => '!in', 'value' => [ 'hidden', ], ], ], ], 'selectors' => [ '{{WRAPPER}} .bdt-field-group{{CURRENT_ITEM}}' => 'width: {{VALUE}}%', ], ] ); $repeater->add_control( 'rows', [ 'label' => esc_html__( 'Rows', 'bdthemes-element-pack' ), 'type' => Controls_Manager::NUMBER, 'default' => 4, 'conditions' => [ 'terms' => [ [ 'name' => 'field_type', 'value' => 'textarea', ], ], ], ] ); $repeater->end_controls_tab(); $repeater->start_controls_tab( 'form_fields_advanced_tab', [ 'label' => esc_html__( 'Advanced', 'bdthemes-element-pack' ), ] ); $repeater->add_control( 'field_value', [ 'label' => esc_html__( 'Default Value', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'default' => '', 'dynamic' => [ 'active' => true, ], 'conditions' => [ 'terms' => [ [ 'name' => 'field_type', 'operator' => 'in', 'value' => [ 'text', 'email', 'textarea', 'number', 'hidden', 'disabled', ], ], ], ], ] ); $repeater->add_control( 'required', [ 'label' => esc_html__( 'Required', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, 'return_value' => 'true', 'default' => '', 'conditions' => [ 'terms' => [ [ 'name' => 'field_type', 'operator' => '!in', 'value' => [ 'checkbox', 'recaptcha', 'recaptcha_v3', 'hidden', 'html', 'step', ], ], ], ], ] ); $this->add_control( 'show_recaptcha', [ 'label' => esc_html__( 'reCAPTCHA Enable', 'bdthemes-element-pack' ) . BDTEP_NC, 'description' => esc_html__( 'Make sure you set the invisible reCAPTCHA key in settings.', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'hide_recaptcha_badge', [ 'label' => esc_html__( 'Hide reCAPTCHA Bagde', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, 'prefix_class' => 'bdt-hide-recaptcha-badge-', 'condition' => [ 'show_recaptcha' => 'yes', ], ] ); $repeater->end_controls_tab(); $repeater->end_controls_tabs(); $this->add_control( 'form_fields', [ 'type' => Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'default' => [ [ 'field_type' => 'text', 'field_label' => esc_html__( 'Full Name', 'bdthemes-element-pack' ), 'field_name' => 'full_name', 'placeholder' => esc_html__( 'Enter your name', 'bdthemes-element-pack' ), 'width' => '100', 'required' => 'true', ], [ 'field_type' => 'email', 'field_label' => esc_html__( 'Your Email', 'bdthemes-element-pack' ), 'field_name' => 'email', 'placeholder' => esc_html__( 'Enter your email address', 'bdthemes-element-pack' ), 'width' => '100', 'required' => 'true', ], ], 'title_field' => '{{{ field_label }}}', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_forms_layout', [ 'label' => esc_html__( 'Form Layout', 'bdthemes-element-pack' ), ] ); $this->add_control( 'show_labels', [ 'label' => esc_html__( 'Label', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'input_size', [ 'label' => esc_html__( 'Input Size', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'default' => 'default', 'options' => [ 'default' => esc_html__( 'Default', 'bdthemes-element-pack' ), 'small' => esc_html__( 'Small', 'bdthemes-element-pack' ), 'large' => esc_html__( 'Large', 'bdthemes-element-pack' ), ], ] ); $this->add_responsive_control( 'alignment', [ 'label' => esc_html__( 'Alignment', 'bdthemes-element-pack' ) . BDTEP_NC, 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'bdthemes-element-pack' ), 'icon' => 'eicon-h-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'bdthemes-element-pack' ), 'icon' => 'eicon-h-align-center', ], 'flex-end' => [ 'title' => esc_html__( 'Right', 'bdthemes-element-pack' ), 'icon' => 'eicon-h-align-right', ], ], 'selectors' => [ '{{WRAPPER}}.bdt-all-field-inline--yes .bdt-ep-webhook-form-form' => 'justify-content: {{VALUE}};', ], 'condition' => [ 'all_field_inline' => 'yes', ], ] ); $this->add_responsive_control( 'text_align', [ 'label' => esc_html__( 'Text Align', 'bdthemes-element-pack' ), 'type' => Controls_Manager::CHOOSE, 'default' => 'left', 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__( 'Right', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-right', ], ], 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-form, {{WRAPPER}} .bdt-ep-webhook-form-form input, {{WRAPPER}} .bdt-ep-webhook-form-form textarea' => 'text-align: {{VALUE}};', ], ] ); $this->add_control( 'success_text', [ 'label' => esc_html__( 'Success Message', 'bdthemes-element-pack' ) . BDTEP_NC, 'type' => Controls_Manager::TEXTAREA, 'rows' => 6, ] ); $this->end_controls_section(); $this->start_controls_section( 'section_content_submit_button', [ 'label' => esc_html__( 'Submit Button', 'bdthemes-element-pack' ), ] ); $this->add_control( 'button_text', [ 'label' => esc_html__( 'Text', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'default' => esc_html__( 'Submit', 'bdthemes-element-pack' ), ] ); $this->add_control( 'button_size', [ 'label' => esc_html__( 'Size', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => esc_html__( 'Default', 'bdthemes-element-pack' ), 'small' => esc_html__( 'Small', 'bdthemes-element-pack' ), 'large' => esc_html__( 'Large', 'bdthemes-element-pack' ), 'full-width' => esc_html__( 'Full Width', 'bdthemes-element-pack' ), ], ] ); $this->add_responsive_control( 'align', [ 'label' => esc_html__( 'Alignment', 'bdthemes-element-pack' ), 'type' => Controls_Manager::CHOOSE, 'default' => '', 'options' => [ 'start' => [ 'title' => esc_html__( 'Left', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-center', ], 'end' => [ 'title' => esc_html__( 'Right', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-right', ], 'stretch' => [ 'title' => esc_html__( 'Justified', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-justify', ], ], 'prefix_class' => 'elementor%s-button-align-', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style', [ 'label' => esc_html__( 'Form Style', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'row_gap', [ 'label' => esc_html__( 'Field Space', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => '15', ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 60, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-field-group:not(:last-child)' => 'margin-bottom: {{SIZE}}{{UNIT}};margin-top: 0;', '{{WRAPPER}} .bdt-name-email-inline + .bdt-name-email-inline' => 'padding-left: {{SIZE}}px', ], ] ); $this->add_responsive_control( 'col_gap', [ 'label' => esc_html__( 'Column Space', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => '12', ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 60, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-field-wrap' => 'padding-right: calc( {{SIZE}}{{UNIT}}/2 ); padding-left: calc( {{SIZE}}{{UNIT}}/2 );', '{{WRAPPER}} .bdt-ep-webhook-form-form' => 'margin-left: calc( -{{SIZE}}{{UNIT}}/2 );margin-right: calc( -{{SIZE}}{{UNIT}}/2 );', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_labels', [ 'label' => esc_html__( 'Label', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'show_labels!' => '', ], ] ); $this->add_control( 'label_spacing', [ 'label' => esc_html__( 'Spacing', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-field-group > label' => 'margin-bottom: {{SIZE}}{{UNIT}} !important;', ], ] ); $this->add_control( 'label_color', [ 'label' => esc_html__( 'Text Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-form-label' => 'color: {{VALUE}};', ], // 'scheme' => [ // 'type' => Schemes\Color::get_type(), // 'value' => Schemes\Color::COLOR_3, // ], ] ); // required text color $this->add_control( 'required_text_color', [ 'label' => esc_html__( 'Required Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-form-label span.bdt-text-danger' => 'color: {{VALUE}} !important;', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'label_typography', 'selector' => '{{WRAPPER}} .bdt-form-label', //'scheme' => Schemes\Typography::TYPOGRAPHY_3, ] ); $this->end_controls_section(); $this->start_controls_section( 'section_field_style', [ 'label' => esc_html__( 'Fields', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->start_controls_tabs( 'tabs_field_style' ); $this->start_controls_tab( 'tab_field_normal', [ 'label' => esc_html__( 'Normal', 'bdthemes-element-pack' ), ] ); $this->add_control( 'field_text_color', [ 'label' => esc_html__( 'Text Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-field-group .bdt-input, {{WRAPPER}} .bdt-field-group .bdt-select, {{WRAPPER}} .bdt-field-group textarea' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'field_placeholder_color', [ 'label' => esc_html__( 'Placeholder Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-field-group .bdt-input::placeholder' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'field_background_color', [ 'label' => esc_html__( 'Background Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-field-group .bdt-input, {{WRAPPER}} .bdt-field-group .bdt-select, {{WRAPPER}} .bdt-field-group textarea' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'field_border', 'label' => esc_html__( 'Border', 'bdthemes-element-pack' ), 'placeholder' => '1px', 'default' => '1px', 'selector' => '{{WRAPPER}} .bdt-field-group .bdt-input, {{WRAPPER}} .bdt-field-group .bdt-select, {{WRAPPER}} .bdt-field-group textarea', 'separator' => 'before', ] ); $this->add_control( 'field_border_radius', [ 'label' => esc_html__( 'Border Radius', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-field-group .bdt-input, {{WRAPPER}} .bdt-field-group .bdt-select, {{WRAPPER}} .bdt-field-group textarea' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'field_box_shadow', 'selector' => '{{WRAPPER}} .bdt-field-group .bdt-input, {{WRAPPER}} .bdt-field-group .bdt-select, {{WRAPPER}} .bdt-field-group textarea', ] ); $this->add_responsive_control( 'field_padding', [ 'label' => esc_html__( 'Padding', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-field-group .bdt-input, {{WRAPPER}} .bdt-field-group .bdt-select, {{WRAPPER}} .bdt-field-group textarea' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; height: auto;', ], 'separator' => 'before', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'field_typography', 'label' => esc_html__( 'Typography', 'bdthemes-element-pack' ), 'selector' => '{{WRAPPER}} .bdt-field-group .bdt-input, {{WRAPPER}} .bdt-field-group .bdt-select, {{WRAPPER}} .bdt-field-group textarea', 'separator' => 'before', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_field_focus', [ 'label' => esc_html__( 'Focus', 'bdthemes-element-pack' ), ] ); $this->add_control( 'field_focus_background', [ 'label' => esc_html__( 'Background', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-field-group .bdt-input:focus, {{WRAPPER}} .bdt-field-group textarea:focus' => 'background-color: {{VALUE}};', ], ] ); $this->add_control( 'field_focus_border_color', [ 'label' => esc_html__( 'Border Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-field-group .bdt-input:focus, {{WRAPPER}} .bdt-field-group textarea:focus' => 'border-color: {{VALUE}};', ], 'condition' => [ 'field_border_border!' => '', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'section_submit_button_style', [ 'label' => esc_html__( 'Submit Button', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->start_controls_tabs( 'tabs_button_style' ); $this->start_controls_tab( 'tab_button_normal', [ 'label' => esc_html__( 'Normal', 'bdthemes-element-pack' ), ] ); $this->add_control( 'button_text_color', [ 'label' => esc_html__( 'Text Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-button' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'button_background_color', 'selector' => '{{WRAPPER}} .bdt-ep-webhook-form-button', ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'button_border', 'placeholder' => '1px', 'default' => '1px', 'selector' => '{{WRAPPER}} .bdt-ep-webhook-form-button', 'separator' => 'before', ] ); $this->add_responsive_control( 'button_border_radius', [ 'label' => esc_html__( 'Border Radius', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'button_text_padding', [ 'label' => esc_html__( 'Padding', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'button_typography', 'selector' => '{{WRAPPER}} .bdt-ep-webhook-form-button', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_button_hover', [ 'label' => esc_html__( 'Hover', 'bdthemes-element-pack' ), ] ); $this->add_control( 'button_hover_color', [ 'label' => esc_html__( 'Text Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-button:hover' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'button_background_hover_color', 'selector' => '{{WRAPPER}} .bdt-ep-webhook-form-button:hover', ] ); $this->add_control( 'button_hover_border_color', [ 'label' => esc_html__( 'Border Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'separator' => 'before', 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-button:hover' => 'border-color: {{VALUE}};', ], 'condition' => [ 'button_border_border!' => '', ], ] ); $this->add_control( 'button_hover_animation', [ 'label' => esc_html__( 'Animation', 'bdthemes-element-pack' ), 'type' => Controls_Manager::HOVER_ANIMATION, ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'section_result_style', [ 'label' => esc_html__( 'Result', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'result_color', [ 'label' => esc_html__( 'Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-result' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'result_background_color', 'separator' => 'before', 'selector' => '{{WRAPPER}} .bdt-ep-webhook-form-result', ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'result_border', 'label' => esc_html__( 'Border', 'bdthemes-element-pack' ), 'selector' => '{{WRAPPER}} .bdt-ep-webhook-form-result', ] ); $this->add_control( 'result_border_radius', [ 'label' => esc_html__( 'Border Radius', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-result' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'result_box_shadow', 'selector' => '{{WRAPPER}} .bdt-ep-webhook-form-result', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'result_typography', 'selector' => '{{WRAPPER}} .bdt-ep-webhook-form-result', ] ); $this->add_responsive_control( 'result_padding', [ 'label' => esc_html__( 'Padding', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-ep-webhook-form-result' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; height: auto;', ], ] ); $this->end_controls_section(); } public function form_fields_render_attributes() { $settings = $this->get_settings_for_display(); $id = $this->get_id(); $this->add_render_attribute( [ 'wrapper' => [ 'class' => [ 'elementor-form-fields-wrapper', ], ], 'field-group' => [ 'class' => [ 'bdt-field-group', 'bdt-width-1-1', ], ], 'user_name_label' => [ 'for' => 'user_name' . $id, 'class' => [ 'bdt-form-label', ], ], 'user_name_input' => [ 'type' => 'text', 'name' => 'name', 'id' => 'user_name' . $id, 'class' => [ 'bdt-input', 'bdt-form-', ], ], ] ); } public function get_attribute_name( $item ) { return "form_fields[{$item['custom_id']}]"; } public function get_attribute_id( $item ) { return $item['custom_id']; } protected function make_select_field( $item, $item_index ) { $this->add_render_attribute( [ 'select-wrapper' . $item_index => [ 'class' => [ // 'elementor-field', // 'elementor-select-wrapper', // esc_attr( $item['css_classes'] ), ], ], 'select' . $item_index => [ // 'name' => $this->get_attribute_name( $item ) . ( ! empty( $item['allow_multiple'] ) ? '[]' : '' ), 'id' => $this->get_attribute_id( $item ), 'name' => ( $item['field_name'] ) ? $item['field_name'] : '', 'required' => ( 'true' === $item['required'] ) ? 'required' : '', 'class' => [ 'bdt-select', 'bdt-form-' . $item['input_size'], ], ], ] ); $options = preg_split( "/\\r\\n|\\r|\\n/", $item['field_options'] ); if ( ! $options ) { return ''; } ob_start(); ?> <?php if ( $this->get_settings_for_display( 'show_labels' ) ) : ?> <label for="<?php echo esc_attr( $this->get_attribute_id( $item ) ); ?>" class="bdt-form-label bdt-display-block bdt-margin-small-bottom"> <?php echo wp_kses_post( $item['field_label'] ); ?> </label> <?php endif; ?> <div <?php $this->print_render_attribute_string( 'select-wrapper' . $item_index ); ?>> <select <?php $this->print_render_attribute_string( 'select' . $item_index ); ?>> <?php $i = 1; foreach ( $options as $key => $option ) { $item['custom_id'] = $i++; $option_id = $item['custom_id'] . $key . $item_index; $option_value = esc_attr( $option ); $option_label = esc_html( $option ); $value_missing = false; if ( false !== strpos( $option, '|' ) ) { list( $label, $value ) = explode( '|', $option ); // Check if value is missing or empty if ( empty( $value ) ) { $value = '0'; // Default value if value is missing $value_missing = true; } $option_value = esc_attr( $value ); $option_label = esc_html( $label ); } else { // Handle the case where no | is found $option_label = esc_html( $option ); $option_value = '00'; // Default value if no | is found $value_missing = true; } $this->add_render_attribute( $option_id, 'value', $option_value ); if ( $value_missing ) { $this->add_render_attribute( $option_id, 'disabled', 'disabled', true ); $this->add_render_attribute( $option_id, 'selected', 'selected', true ); // remove value attribute if value is missing $this->add_render_attribute( $option_id, 'value', '', true ); } echo '<option ' . wp_kses_post( $this->get_render_attribute_string( $option_id ) ) . '>' . wp_kses_post( $option_label ) . '</option>'; } ?> </select> </div> <?php $select = ob_get_clean(); return $select; } protected function make_radio_checkbox_field( $item, $item_index, $type ) { $options = preg_split( "/\\r\\n|\\r|\\n/", $item['field_options'] ); $html = ''; if ( $this->get_settings_for_display( 'show_labels' ) ) { $html .= '<label for="' . $this->get_attribute_id( $item ) . '" class="bdt-form-label bdt-display-block bdt-margin-small-bottom"> ' . $item['field_label'] . ' </label>'; } if ( $options ) { $html .= '<div class="elementor-field-subgroup bdt-radio-inline-' . $item['inline_list'] . '">'; $id = $this->get_attribute_id( $item ); foreach ( $options as $key => $option ) { $element_id = $this->get_attribute_id( $item ) . $key; $html_id = $this->get_attribute_id( $item ) . $key; $option_label = $option; $option_value = $option; if ( false !== strpos( $option, '|' ) ) { list( $option_label, $option_value ) = explode( '|', $option ); } $this->add_render_attribute( $element_id, [ 'type' => $type, 'value' => $option_value, 'class' => 'bdt-radio', // 'name' => $id, 'name' => ( $item['field_name'] ) ? $item['field_name'] : '', ] ); if ( ! empty( $item['field_value'] ) && $option_value === $item['field_value'] ) { $this->add_render_attribute( $element_id, 'checked', 'checked' ); } $html .= '<label id="' . $html_id . '" class="elementor-field-option"><input ' . $this->get_render_attribute_string( $element_id ) . '> <span for="' . $html_id . '">' . $option_label . '</span></label>'; } $html .= '</div>'; } return $html; } protected function transient_security_data( $id ) { $settings = $this->get_settings_for_display(); $transient_data = array(); $transient_key = 'bdt_ep_webhook_form_data_' . $id; $transient_value = get_transient( $transient_key ); foreach ( $settings['secuirty_fields'] as $key => $field ) { if ( ! empty( $field['security_field_name'] ) && ! empty( $field['security_field_value'] ) ) { $transient_data[ $field['security_data_position'] ][ $field['security_field_name'] ] = $field['security_field_value']; } } $transient_data['webhook_url'] = ! empty( $settings['webhook_url'] ) ? esc_url( $settings['webhook_url'] ) : ''; if ( \Elementor\Plugin::$instance->editor->is_edit_mode() ) : set_transient( $transient_key, $transient_data, 60 * 60 * 30 ); endif; if ( false === $transient_value || empty( $transient_value ) ) { set_transient( $transient_key, $transient_data, 60 * 60 * 30 ); } else { $transient_data = get_transient( $transient_key ); } return $transient_data; } protected function make_textarea_field( $item, $item_index ) { $this->add_render_attribute( 'textarea' . $item_index, [ 'class' => [ 'elementor-field-textual', 'elementor-field', // esc_attr( $item['css_classes'] ), 'elementor-size-' . $item['input_size'], ], 'name' => ( $item['field_name'] ) ? $item['field_name'] : '', 'id' => $this->get_attribute_id( $item ), 'rows' => $item['rows'], ] ); if ( $item['placeholder'] ) { $this->add_render_attribute( 'textarea' . $item_index, 'placeholder', $item['placeholder'] ); } // if ( $item['required'] ) { // $this->add_required_attribute( 'textarea' . $item_index ); // } $value = empty( $item['field_value'] ) ? '' : $item['field_value']; return '<textarea ' . $this->get_render_attribute_string( 'textarea' . $item_index ) . '>' . $value . '</textarea>'; } public function render() { $settings = $this->get_settings_for_display(); $id = $this->get_id(); $element_id = 'bdt-ep-webhook-form-' . $id; $ep_api_settings = get_option( 'element_pack_api_settings' ); $this->transient_security_data( $id ); if ( ! empty( $settings['button_size'] ) ) { $this->add_render_attribute( 'button', 'class', 'bdt-button-' . $settings['button_size'] ); } if ( $settings['button_hover_animation'] ) { $this->add_render_attribute( 'button', 'class', 'elementor-animation-' . $settings['button_hover_animation'] ); } if ( isset( $settings['show_recaptcha'] ) && $settings['show_recaptcha'] == 'yes' ) { if ( ! empty( $ep_api_settings['recaptcha_site_key'] ) and ! empty( $ep_api_settings['recaptcha_secret_key'] ) ) { $this->add_render_attribute( 'button', 'data-sitekey', $ep_api_settings['recaptcha_site_key'] ); $this->add_render_attribute( 'button', 'data-callback', 'elementPackWfGICCB' ); $this->add_render_attribute( 'button', 'class', 'g-recaptcha' ); } } $this->add_render_attribute( [ 'button' => [ 'class' => [ 'bdt-button', 'elementor-button', 'bdt-button-primary', 'bdt-ep-webhook-form-button', ], ], ] ); $this->add_render_attribute( [ 'webhook-form' => [ 'class' => 'bdt-ep-webhook-form', 'id' => $element_id, 'data-settings' => [ wp_json_encode( [ 'id' => '#' . $element_id, ] ), ], ], ] ); if ( isset( $settings['show_recaptcha'] ) && $settings['show_recaptcha'] == 'yes' ) { if ( ! empty( $ep_api_settings['recaptcha_site_key'] ) and ! empty( $ep_api_settings['recaptcha_secret_key'] ) ) { $this->add_render_attribute( 'webhook-form', 'class', 'with-recaptcha' ); }else{ $this->add_render_attribute( 'webhook-form', 'class', 'without-recaptcha' ); } } else { $this->add_render_attribute( 'webhook-form', 'class', 'without-recaptcha' ); } $this->add_render_attribute( 'wb-form', 'class', 'bdt-ep-webhook-form-form bdt-flex bdt-flex-wrap' ); $this->add_render_attribute( 'wb-form', 'action', site_url() . '/wp-admin/admin-ajax.php' ); ?> <div <?php $this->print_render_attribute_string( 'webhook-form' ); ?>> <div class="bdt-ep-webhook-form-wrapper"> <form <?php $this->print_render_attribute_string( 'wb-form' ); ?>> <input type="hidden" name="widget_id" value="<?php echo esc_attr( $id ); ?>" /> <input type="hidden" name="success_text" value="<?php echo ! empty( $settings['success_text'] ) ? esc_html( $settings['success_text'] ) : ''; ?>" /> <?php $i = 1; foreach ( $settings['form_fields'] as $item_index => $item ) : $item['custom_id'] = $id . '-' . $i++; $item['input_size'] = $settings['input_size']; $disabled_class = $item['field_type'] == 'disabled' ? 'bdt-mouse-disabled' : ''; $this->add_render_attribute( [ 'field_label' . $item_index => [ 'for' => $item['custom_id'], 'class' => [ 'bdt-form-label bdt-display-block bdt-margin-small-bottom', ], ], 'field_input' . $item_index => [ 'type' => $item['field_type'] != 'disabled' ? $item['field_type'] : 'text', 'value' => $item['field_value'], 'id' => $item['custom_id'], 'placeholder' => ( $item['placeholder'] ) ? $item['placeholder'] : '', 'name' => ( $item['field_name'] ) ? $item['field_name'] : '', 'class' => [ 'bdt-input', 'bdt-form-' . $item['input_size'], $disabled_class, ], ], ], true ); if ( isset( $item['required'] ) && true == $item['required'] ) { $this->add_render_attribute( [ 'field_input' . $item_index => [ 'required' => 'required', ], ], true ); } $item['field_label'] = ( isset( $item['required'] ) && true == $item['required'] ) ? $item['field_label'] . ' <span class="bdt-text-danger">*</span>' : $item['field_label']; ?> <div class="bdt-ep-webhook-form-field-wrap bdt-field-group bdt-width-1-1 bdt-first-column elementor-repeater-item-<?php echo esc_attr( $item['_id'] ); ?>"> <?php switch ( $item['field_type'] ) { case 'textarea': // PHPCS - the method make_textarea_field is safe. if ( $settings['show_labels'] ) { echo '<label ' . wp_kses_post( $this->get_render_attribute_string( 'field_label' . $item_index ) ) . '>' . wp_kses_post( $item['field_label'] ) . '</label>'; } echo $this->make_textarea_field( $item, $item_index ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped break; case 'text': case 'number': case 'email': case 'date': if ( $settings['show_labels'] ) { echo '<label ' . wp_kses_post( $this->get_render_attribute_string( 'field_label' . $item_index ) ) . '>' . wp_kses_post( $item['field_label'] ) . '</label>'; } echo '<div class="bdt-form-controls">'; echo '<input ' . wp_kses_post( $this->get_render_attribute_string( 'field_input' . $item_index ) ) . '>'; echo '</div>'; break; case 'hidden': echo '<div class="bdt-form-controls">'; echo '<input ' . wp_kses_post( $this->get_render_attribute_string( 'field_input' . $item_index ) ) . '>'; echo '</div>'; break; case 'disabled': if ( $settings['show_labels'] ) { echo '<label ' . wp_kses_post( $this->get_render_attribute_string( 'field_label' . $item_index ) ) . '>' . wp_kses_post( $item['field_label'] ) . '</label>'; } echo '<div class="bdt-form-controls">'; echo '<input ' . wp_kses_post( $this->get_render_attribute_string( 'field_input' . $item_index ) ) . ' disabled="disabled">'; echo '</div>'; break; case 'select': // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $this->make_select_field( $item, $item_index ); break; case 'radio': case 'checkbox': // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $this->make_radio_checkbox_field( $item, $item_index, $item['field_type'] ); break; default: echo esc_html_x( 'Something wrong!', 'Frontend', 'bdthemes-element-pack' ); break; } ?> </div> <?php endforeach; ?> <input type="hidden" class="widget_id" name="widget_id" value="<?php echo esc_attr( $id ); ?>" /> <input type="hidden" class="page_id" name="page_id" value="<?php echo esc_attr( get_the_ID() ); ?>" /> <div class="bdt-ep-webhook-form-field-wrap bdt-field-group bdt-width-1-1 bdt-first-column bdt-submit-button-wrap"> <div class="elementor-field-type-submit bdt-margin-small-top bdt-flex"> <button <?php $this->print_render_attribute_string( 'button' ); ?> type="submit"> <?php echo esc_html( $settings['button_text'] ); ?> </button> </div> </div> </form> </div> </div> <?php } }
| ver. 1.1 | |
.
| PHP 8.4.20 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.3 |
proxy
|
phpinfo
|
ÐаÑтройка