Sindbad~EG File Manager
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class Woolentor_Wb_Product_Suggest_Price_Widget extends Widget_Base {
public function get_name() {
return 'wl-product-suggest-price';
}
public function get_title() {
return __( 'WL: Suggest Price', 'woolentor' );
}
public function get_icon() {
return 'eicon-form-horizontal';
}
public function get_categories() {
return array( 'woolentor-addons' );
}
public function get_help_url() {
return 'https://woolentor.com/documentation/';
}
public function get_style_depends(){
return [
'woolentor-widgets',
];
}
public function get_keywords(){
return ['suggest price','price'];
}
protected function register_controls() {
$this->start_controls_section(
'product_suggest_price',
[
'label' => esc_html__( 'Suggest Price', 'woolentor' ),
]
);
// input field plceholder text
$this->add_control(
'open_close_btn_text',
[
'label' => __( 'Button Text', 'woolentor' ),
'type' => Controls_Manager::POPOVER_TOGGLE,
]
);
$this->start_popover();
$this->add_control(
'open_button_text',
[
'label' => __( 'Open Button Text', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Suggest Price', 'woolentor' ),
'placeholder' => __( 'Suggest Price', 'woolentor' ),
'label_block'=>true,
]
);
$this->add_control(
'close_button_text',
[
'label' => __( 'Close Button Text', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Close', 'woolentor' ),
'placeholder' => __( 'Close', 'woolentor' ),
'label_block'=>true,
]
);
$this->end_popover();
$this->add_control(
'send_to_mail',
[
'label' => __( 'Send To Mail', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'admin@domain.com', 'woolentor' ),
'placeholder' => __( 'admin@domain.com', 'woolentor' ),
'label_block'=>true,
'separator'=>'before',
]
);
$this->add_control(
'submit_button_txt',
[
'label' => __( 'Submit Button Text', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Submit', 'woolentor' ),
'placeholder' => __( 'Submit', 'woolentor' ),
'label_block'=>true,
]
);
// input field plceholder text
$this->add_control(
'input_placeholder_text',
[
'label' => __( 'Input Field Placeholder', 'woolentor' ),
'type' => Controls_Manager::POPOVER_TOGGLE,
]
);
$this->start_popover();
$this->add_control(
'name_placeholder_text',
[
'label' => __( 'Name Field Placeholder', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Please Enter your name', 'woolentor' ),
'placeholder' => __( 'Please Enter your name', 'woolentor' ),
'label_block'=>true,
]
);
$this->add_control(
'email_placeholder_text',
[
'label' => __( 'Email Field Placeholder', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Please Enter your email', 'woolentor' ),
'placeholder' => __( 'Please Enter your email', 'woolentor' ),
'label_block'=>true,
]
);
$this->add_control(
'message_placeholder_text',
[
'label' => __( 'Message Field Placeholder', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Write your message', 'woolentor' ),
'placeholder' => __( 'Write your message', 'woolentor' ),
'label_block'=>true,
]
);
$this->end_popover();
// Message
$this->add_control(
'mail_send_message',
[
'label' => __( 'Message', 'woolentor' ),
'type' => Controls_Manager::POPOVER_TOGGLE,
]
);
$this->start_popover();
$this->add_control(
'message_success',
[
'label' => __( 'Success Message', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Thank you for contacting with us', 'woolentor' ),
'placeholder' => __( 'Thank you for contacting with us', 'woolentor' ),
'label_block'=>true,
'separator'=>'before',
]
);
$this->add_control(
'message_error',
[
'label' => __( 'Error Message', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Something is wrong! try again', 'woolentor' ),
'placeholder' => __( 'Something is wrong! try again', 'woolentor' ),
'label_block'=>true,
]
);
$this->end_popover();
$this->end_controls_section();
$this->start_controls_section(
'input_style',
[
'label' => __( 'Input', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'input_text_color',
[
'label' => __( 'Text Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'input_placeholder_color',
[
'label' => __( 'Placeholder Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input[type*="text"]::-webkit-input-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .wl-suggest-form-input input[type*="text"]::-moz-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .wl-suggest-form-input input[type*="text"]:-ms-input-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .wl-suggest-form-input input[type*="email"]::-webkit-input-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .wl-suggest-form-input input[type*="email"]::-moz-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .wl-suggest-form-input input[type*="email"]:-ms-input-placeholder' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'input_typography',
'selector' => '{{WRAPPER}} .wl-suggest-form-input input',
]
);
$this->add_group_control(
Group_Control_Background::get_type(),
[
'name' => 'input_background',
'label' => __( 'Background', 'woolentor' ),
'types' => [ 'classic', 'gradient' ],
'selector' => '{{WRAPPER}} .wl-suggest-form-input input',
]
);
$this->add_responsive_control(
'input_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->add_responsive_control(
'input_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'input_border',
'label' => __( 'Border', 'woolentor' ),
'selector' => '{{WRAPPER}} .wl-suggest-form-input input',
'separator' =>'before',
]
);
$this->add_responsive_control(
'input_border_radius',
[
'label' => esc_html__( 'Border Radius', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input' => 'border-radius: {{TOP}}px {{RIGHT}}px {{BOTTOM}}px {{LEFT}}px;',
],
]
);
$this->end_controls_section();
// Style tab Textarea section
$this->start_controls_section(
'style_textarea',
[
'label' => __( 'Textarea', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'textarea_text_color',
[
'label' => __( 'Text Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input textarea' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'textarea_placeholder_color',
[
'label' => __( 'Placeholder Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input textarea::-webkit-input-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .wl-suggest-form-input textarea::-moz-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .wl-suggest-form-input textarea:-ms-input-placeholder' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'textarea_typography',
'selector' => '{{WRAPPER}} .wl-suggest-form-input textarea',
]
);
$this->add_group_control(
Group_Control_Background::get_type(),
[
'name' => 'textarea_background',
'label' => __( 'Background', 'woolentor' ),
'types' => [ 'classic', 'gradient' ],
'selector' => '{{WRAPPER}} .wl-suggest-form-input textarea',
]
);
$this->add_responsive_control(
'textarea_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input textarea' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->add_responsive_control(
'textarea_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input textarea' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'textarea_border',
'label' => __( 'Border', 'woolentor' ),
'selector' => '{{WRAPPER}} .wl-suggest-form-input textarea',
'separator' =>'before',
]
);
$this->add_responsive_control(
'textarea_border_radius',
[
'label' => esc_html__( 'Border Radius', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input textarea' => 'border-radius: {{TOP}}px {{RIGHT}}px {{BOTTOM}}px {{LEFT}}px;',
],
]
);
$this->end_controls_section();
// Submit Button
$this->start_controls_section(
'style_submit_button',
[
'label' => __( 'Submit Button', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
// Button Tabs Start
$this->start_controls_tabs('style_submit_tabs');
// Start Normal Submit button tab
$this->start_controls_tab(
'style_submit_normal_tab',
[
'label' => __( 'Normal', 'woolentor' ),
]
);
$this->add_control(
'submitbutton_text_color',
[
'label' => __( 'Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'default'=>'#ffffff',
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input[type="submit"]' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'submitbutton_typography',
'selector' => '{{WRAPPER}} .wl-suggest-form-input input[type="submit"]',
]
);
$this->add_group_control(
Group_Control_Background::get_type(),
[
'name' => 'submitbutton_background',
'label' => __( 'Background', 'woolentor' ),
'types' => [ 'classic', 'gradient' ],
'selector' => '{{WRAPPER}} .wl-suggest-form-input input[type="submit"]',
]
);
$this->add_responsive_control(
'submitbutton_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input[type="submit"]' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->add_responsive_control(
'submitbutton_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input[type="submit"]' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'submitbutton_border',
'label' => __( 'Border', 'woolentor' ),
'selector' => '{{WRAPPER}} .wl-suggest-form-input input[type="submit"]',
'separator' =>'before',
]
);
$this->add_responsive_control(
'submitbutton_border_radius',
[
'label' => esc_html__( 'Border Radius', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input[type="submit"]' => 'border-radius: {{TOP}}px {{RIGHT}}px {{BOTTOM}}px {{LEFT}}px;',
],
]
);
$this->end_controls_tab(); // Normal submit Button tab end
// Start Hover Submit button tab
$this->start_controls_tab(
'style_submit_hover_tab',
[
'label' => __( 'Hover', 'woolentor' ),
]
);
$this->add_control(
'submitbutton_hover_text_color',
[
'label' => __( 'Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input[type="submit"]:hover' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Background::get_type(),
[
'name' => 'submitbutton_hover_background',
'label' => __( 'Background', 'woolentor' ),
'types' => [ 'classic', 'gradient' ],
'selector' => '{{WRAPPER}} .wl-suggest-form-input input[type="submit"]:hover',
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'submitbutton_hover_border',
'label' => __( 'Border', 'woolentor' ),
'selector' => '{{WRAPPER}} .wl-suggest-form-input input[type="submit"]:hover',
'separator' =>'before',
]
);
$this->add_responsive_control(
'submitbutton_hover_border_radius',
[
'label' => esc_html__( 'Border Radius', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .wl-suggest-form-input input[type="submit"]:hover' => 'border-radius: {{TOP}}px {{RIGHT}}px {{BOTTOM}}px {{LEFT}}px;',
],
]
);
$this->end_controls_tab(); // Hover Submit Button tab End
$this->end_controls_tabs(); // Button Tabs End
$this->end_controls_section();
// Open button
$this->start_controls_section(
'open_button_style',
[
'label' => __( 'Open Button', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->start_controls_tabs('open_button_normal_style_tabs');
// Button Normal tab
$this->start_controls_tab(
'open_button_normal_style_tab',
[
'label' => __( 'Normal', 'woolentor' ),
]
);
$this->add_control(
'open_button_color',
[
'label' => __( 'Text Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlopen' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'open_button_typography',
'label' => __( 'Typography', 'woolentor' ),
'selector' => '{{WRAPPER}} .wlsugget-button.wlopen',
)
);
$this->add_control(
'open_button_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em' ],
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlopen' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'open_button_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em' ],
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlopen' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'open_button_border',
'label' => __( 'Border', 'woolentor' ),
'selector' => '{{WRAPPER}} .wlsugget-button.wlopen',
]
);
$this->add_control(
'open_button_border_radius',
[
'label' => __( 'Border Radius', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlopen' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'open_button_background_color',
[
'label' => __( 'Background Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlopen' => 'background-color: {{VALUE}}',
],
]
);
$this->end_controls_tab();
// Button Hover tab
$this->start_controls_tab(
'open_button_hover_style_tab',
[
'label' => __( 'Hover', 'woolentor' ),
]
);
$this->add_control(
'open_button_hover_color',
[
'label' => __( 'Text Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlopen:hover' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'open_button_hover_background_color',
[
'label' => __( 'Background Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlopen:hover' => 'background-color: {{VALUE}}',
],
]
);
$this->add_control(
'open_button_hover_border_color',
[
'label' => __( 'Border Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlopen:hover' => 'border-color: {{VALUE}}',
],
]
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
// Close button
$this->start_controls_section(
'close_button_style',
[
'label' => __( 'Close Button', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->start_controls_tabs('close_button_normal_style_tabs');
// Button Normal tab
$this->start_controls_tab(
'close_button_normal_style_tab',
[
'label' => __( 'Normal', 'woolentor' ),
]
);
$this->add_control(
'close_button_color',
[
'label' => __( 'Text Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlclose' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'close_button_typography',
'label' => __( 'Typography', 'woolentor' ),
'selector' => '{{WRAPPER}} .wlsugget-button.wlclose',
)
);
$this->add_control(
'close_button_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em' ],
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlclose' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'close_button_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em' ],
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlclose' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'close_button_border',
'label' => __( 'Border', 'woolentor' ),
'selector' => '{{WRAPPER}} .wlsugget-button.wlclose',
]
);
$this->add_control(
'close_button_border_radius',
[
'label' => __( 'Border Radius', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlclose' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'close_button_background_color',
[
'label' => __( 'Background Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlclose' => 'background-color: {{VALUE}}',
],
]
);
$this->end_controls_tab();
// Button Hover tab
$this->start_controls_tab(
'close_button_hover_style_tab',
[
'label' => __( 'Hover', 'woolentor' ),
]
);
$this->add_control(
'close_button_hover_color',
[
'label' => __( 'Text Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlclose:hover' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'close_button_hover_background_color',
[
'label' => __( 'Background Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlclose:hover' => 'background-color: {{VALUE}}',
],
]
);
$this->add_control(
'close_button_hover_border_color',
[
'label' => __( 'Border Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wlsugget-button.wlclose:hover' => 'border-color: {{VALUE}}',
],
]
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings();
$id = $this->get_id();
$this->add_render_attribute(
[
'user_name' => [
'type' => 'text',
'name' => 'wlname',
'id' => 'wlname-' . esc_attr( $id ),
'placeholder' => $settings['name_placeholder_text'],
],
'user_email' => [
'type' => 'email',
'name' => 'wlemail',
'id' => 'wlemail-' . esc_attr( $id ),
'placeholder' => $settings['email_placeholder_text'],
],
'user_message' => [
'name' => 'wlmessage',
'id' => 'wlmessage-' . esc_attr( $id ),
'rows' => '4',
'cols' => '50',
'placeholder' => $settings['message_placeholder_text'],
],
'user_submit' => [
'type' => 'submit',
'name' => 'wlsubmit-' . esc_attr( $id ),
'id' => 'wlemail-' . esc_attr( $id ),
'value' => $settings['submit_button_txt'],
],
]
);
?>
<div class="wl-suggest-price">
<?php
if( isset( $_REQUEST['wlsubmit-'.$id] ) ){
$name = $_POST['wlname'];
$email = $_POST['wlemail'];
$message = $_POST['wlmessage'];
//php mailer variables
$sentto = $settings['send_to_mail'];
$subject = "Suggest For Price";
$headers = 'From: '. $email . "\r\n" .
'Reply-To: ' . $email . "\r\n";
//Here put your Validation and send mail
$sent = wp_mail( $sentto, $subject, strip_tags($message), $headers );
if( $sent ) {
echo '<p class="wlsendmessage">'.$settings['message_success'].'</p>';
}
else{
echo '<p class="wlsendmessage">'.$settings['message_error'].'</p>';
}
}
?>
<button id="wlopenform-<?php echo esc_attr( $id ); ?>" class="wlsugget-button wlopen"><?php echo esc_html__( $settings['open_button_text'], 'woolentor' ); ?></button>
<button id="wlcloseform-<?php echo esc_attr( $id ); ?>" class="wlsugget-button wlclose" style="display: none;"><?php echo esc_html__( $settings['close_button_text'], 'woolentor' ); ?></button>
<form id="wlsuggestform-<?php echo esc_attr( $id ); ?>" action="<?php echo esc_url( $_SERVER['REQUEST_URI'] ); ?>" method="post">
<div class="wl-suggest-form-input">
<input <?php echo $this->get_render_attribute_string( 'user_name' ); ?> >
</div>
<div class="wl-suggest-form-input">
<input <?php echo $this->get_render_attribute_string( 'user_email' ); ?>>
</div>
<div class="wl-suggest-form-input">
<textarea <?php echo $this->get_render_attribute_string( 'user_message' ); ?>></textarea>
</div>
<div class="wl-suggest-form-input">
<input <?php echo $this->get_render_attribute_string( 'user_submit' ); ?> >
</div>
</form>
</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
"use strict";
var open_formbtn = '#wlopenform-<?php echo esc_attr($id); ?>';
var close_formbtn = '#wlcloseform-<?php echo esc_attr($id); ?>';
var terget_form = 'form#wlsuggestform-<?php echo esc_attr($id); ?>';
$( open_formbtn ).on('click', function(){
$(this).hide();
$(this).siblings( close_formbtn ).show();
$(this).siblings( terget_form ).slideDown('slow');
});
// Close Button
$( close_formbtn ).on('click', function(){
$(this).hide();
$(this).siblings( open_formbtn ).show();
$(this).siblings( terget_form ).slideUp('slow');
});
});
</script>
<?php
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists