File: /home/zwafgyp/lacalita/wp-content/plugins/rey-core/inc/modules/request-quote/element.php
<?php
namespace ReyCore\Modules\RequestQuote;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Element extends \ReyCore\Modules\CustomTemplates\WooBase {
public function get_name() {
return 'reycore-woo-pdp-request-quote';
}
public function get_title() {
return __( 'Request Quote Button (PDP)', 'rey-core' );
}
public function get_icon() {
return $this->get_icon_class();
}
public function get_categories() {
return [ 'rey-woocommerce-pdp' ];
}
public function show_in_panel() {
return $this->maybe_show_in_panel();
}
// public function get_custom_help_url() {
// return '';
// }
/**
* Register widget controls.
*
* Adds different input fields to allow the user to change and customize the widget settings.
*
* @since 1.0.0
* @access protected
*/
protected function element_register_controls() {
$this->start_controls_section(
'section_settings',
[
'label' => __( 'Settings', 'rey-core' ),
]
);
$this->add_control(
'button_text',
[
'label' => esc_html__( 'Button Text', 'rey-core' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => '',
'placeholder' => esc_html__( 'eg: Request a quote', 'rey-core' ),
]
);
$this->add_control(
'modal_title',
[
'label' => esc_html__( 'Popup title', 'rey-core' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => '',
'placeholder' => esc_html__( 'eg: Product', 'rey-core' ),
]
);
$this->add_control(
'customize_settings_notice',
[
'type' => \Elementor\Controls_Manager::RAW_HTML,
'content_classes' => 'rey-raw-html',
'raw' => sprintf( _x( '<a href="%s" target="_blank" class="__title-link">Customize Request Quote options<i class="eicon-editor-external-link"></i></a><br>Access Customizer > WooCommerce > Product Components to customize the display of this feature.', 'Elementor control label', 'rey-core' ), add_query_arg( ['autofocus[control]' => 'request_quote__type'], admin_url( 'customize.php' ) ) ),
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_styles',
[
'label' => __( 'Styles', 'rey-core' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'show_label' => false,
]
);
$selectors = [
'main' => '{{WRAPPER}} .rey-requestQuote-wrapper',
'btn' => '{{WRAPPER}} .rey-requestQuote-btn',
'btn_hover' => '{{WRAPPER}} .rey-requestQuote-btn:hover',
];
$this->add_control(
'btn_style',
[
'type' => \Elementor\Controls_Manager::SELECT,
'label' => esc_html__( 'Button Style', 'rey-core' ),
'default' => 'btn-line-active',
'options' => [
'btn-line-active' => esc_html__( 'Underlined', 'rey-core' ),
'btn-primary' => esc_html__( 'Regular', 'rey-core' ),
'btn-primary btn--block' => esc_html__( 'Regular & Full width', 'rey-core' ),
'btn-primary-outline' => esc_html__( 'Regular outline', 'rey-core' ),
'btn-primary-outline btn--block' => esc_html__( 'Regular outline & Full width', 'rey-core' ),
'btn-secondary' => esc_html__( 'Secondary', 'rey-core' ),
'btn-secondary btn--block' => esc_html__( 'Secondary & Full width', 'rey-core' ),
],
]
);
$this->add_control(
'color',
[
'label' => esc_html__( 'Color', 'rey-core' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
$selectors['main'] => '--accent-text-color: {{VALUE}}; --link-color: {{VALUE}};',
],
]
);
$this->add_control(
'bg_color',
[
'label' => esc_html__( 'Background Color', 'rey-core' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
$selectors['main'] => '--accent-color: {{VALUE}}',
],
]
);
$this->add_control(
'color_hover',
[
'label' => esc_html__( 'Hover Color', 'rey-core' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
$selectors['btn_hover'] => 'color: {{VALUE}}',
],
]
);
$this->add_control(
'bg_color_hover',
[
'label' => esc_html__( 'Hover Background Color', 'rey-core' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
$selectors['btn_hover'] => 'background-color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'typo',
'selector' => $selectors['btn'],
]
);
$this->end_controls_section();
}
function render_template() {
$this->_settings = $this->get_settings_for_display();
add_filter('theme_mod_request_quote__btn_style', [$this, 'btn_style']);
$args = [];
if( $button_text = $this->_settings['button_text'] ){
$args['title'] = $button_text;
}
if( $modal_title = $this->_settings['modal_title'] ){
$args['product_title'] = $modal_title;
}
Base::instance()->get_button_html($args);
remove_filter('theme_mod_request_quote__btn_style', [$this, 'btn_style']);
}
function btn_style($mod){
if( $style = $this->_settings['btn_style'] ){
return $style;
}
return $mod;
}
}