Viewing File: /home/maglabs/sogefab/wp-content/themes/sofass/inc/vendors/elementor/widgets/mailchimp.php
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class Sofass_Elementor_Mailchimp extends Widget_Base {
public function get_name() {
return 'sofass_mailchimp';
}
public function get_title() {
return esc_html__( 'Goal MailChimp Sign-Up Form', 'sofass' );
}
public function get_categories() {
return [ 'sofass-elements' ];
}
protected function register_controls() {
$this->start_controls_section(
'content_section',
[
'label' => esc_html__( 'MailChimp Sign-Up Form', 'sofass' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'title',
[
'label' => esc_html__( 'Title', 'sofass' ),
'type' => Controls_Manager::TEXT,
'placeholder' => esc_html__( 'Enter your title here', 'sofass' ),
]
);
$this->add_control(
'style',
[
'label' => esc_html__( 'Style', 'sofass' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'default' => esc_html__('Default', 'sofass'),
'st_white' => esc_html__('White', 'sofass'),
),
'default' => ''
]
);
$this->add_control(
'el_class',
[
'label' => esc_html__( 'Extra class name', 'sofass' ),
'type' => Controls_Manager::TEXT,
'placeholder' => esc_html__( 'If you wish to style particular content element differently, please add a class name to this field and refer to it in your custom CSS file.', 'sofass' ),
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_title_style',
[
'label' => esc_html__( 'Tyles', 'sofass' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'title_color',
[
'label' => esc_html__( 'Title Color', 'sofass' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
// Stronger selector to avoid section style from overwriting
'{{WRAPPER}} .title' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'label' => esc_html__( 'Title Typography', 'sofass' ),
'name' => 'title_typography',
'selector' => '{{WRAPPER}} .title',
]
);
$this->add_control(
'btn_color',
[
'label' => esc_html__( 'Button Color', 'sofass' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
// Stronger selector to avoid section style from overwriting
'{{WRAPPER}} .btn' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'btn_bg_color',
[
'label' => esc_html__( 'Button Background', 'sofass' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
// Stronger selector to avoid section style from overwriting
'{{WRAPPER}} .btn' => 'background: {{VALUE}}; border-color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'label' => esc_html__( 'Button Typography', 'sofass' ),
'name' => 'btn_typography',
'selector' => '{{WRAPPER}} .btn',
]
);
$this->add_control(
'input_bg_color',
[
'label' => esc_html__( 'Input Background', 'sofass' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
// Stronger selector to avoid section style from overwriting
'{{WRAPPER}} input' => 'background: {{VALUE}}; border-color: {{VALUE}};',
],
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings();
extract( $settings );
?>
<div class="widget-mailchimp clearfix <?php echo esc_attr($el_class.' '.$style); ?>">
<?php if ( !empty($title) ) { ?>
<h2 class="title"><?php echo wp_kses_post($title); ?></h2>
<?php } ?>
<?php
if ( function_exists('mc4wp_show_form') ) {
mc4wp_show_form('');
}
?>
</div>
<?php
}
}
if ( version_compare(ELEMENTOR_VERSION, '3.5.0', '<') ) {
Plugin::instance()->widgets_manager->register_widget_type( new Sofass_Elementor_Mailchimp );
} else {
Plugin::instance()->widgets_manager->register( new Sofass_Elementor_Mailchimp );
}
Back to Directory
File Manager