File: /home/parhudrw/roflma.it/wp-content/plugins/lesya-plugin/elementor/widgets/footer-subscribe.php
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Lesya Footer Subscribe Widget.
*
* @since 1.0
*/
class Lesya_Footer_Subscribe_Widget extends Widget_Base {
public function get_name() {
return 'lesya-footer-subscribe';
}
public function get_title() {
return esc_html__( 'Footer Subscribe', 'lesya-plugin' );
}
public function get_icon() {
return 'eicon-parallax';
}
public function get_categories() {
return [ 'lesya-category' ];
}
/**
* Register widget controls.
*
* @since 1.0
*/
protected function register_controls() {
$this->start_controls_section(
'content_tab',
[
'label' => esc_html__( 'Heading', 'lesya-plugin' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'title',
[
'label' => esc_html__( 'Title', 'lesya-plugin' ),
'type' => Controls_Manager::TEXTAREA,
'placeholder' => esc_html__( 'Enter title', 'lesya-plugin' ),
'default' => esc_html__( 'Title', 'lesya-plugin' ),
]
);
$this->end_controls_section();
$this->start_controls_section(
'form_tab',
[
'label' => esc_html__( 'Form', 'lesya-plugin' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'form',
[
'label' => esc_html__( 'Select CF7 Form', 'lesya-plugin' ),
'type' => Controls_Manager::SELECT,
'default' => 1,
'options' => $this->contact_form_list(),
]
);
$this->end_controls_section();
$this->start_controls_section(
'content_styling',
[
'label' => esc_html__( 'Content', 'lesya-plugin' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'title_color',
[
'label' => esc_html__( 'Title Color', 'lesya-plugin' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .footer-title' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => esc_html__( 'Title Typography:', 'lesya-plugin' ),
'selector' => '{{WRAPPER}} .footer-title',
]
);
$this->add_control(
'form_border_color',
[
'label' => esc_html__( 'Form Border Color', 'lesya-plugin' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .newsletter-widget input' => 'border-color: {{VALUE}};',
],
]
);
$this->add_control(
'form_input_color',
[
'label' => esc_html__( 'Form Input Color', 'lesya-plugin' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .newsletter-widget input' => 'color: {{VALUE}};',
],
]
);
$this->end_controls_section();
}
/**
* Render Contact Form List.
*
* @since 1.0
*/
protected function contact_form_list() {
$cf7_posts = get_posts( 'post_type="wpcf7_contact_form"&numberposts=-1' );
$cf7_forms = array();
if ( $cf7_posts ) {
foreach ( $cf7_posts as $cf7_form ) {
$cf7_forms[ $cf7_form->ID ] = $cf7_form->post_title;
}
} else {
$cf7_forms[ esc_html__( 'No contact forms found', 'lesya-plugin' ) ] = 0;
}
return $cf7_forms;
}
/**
* Render widget output on the frontend.
*
* @since 1.0
*/
protected function render() {
$settings = $this->get_settings_for_display();
$this->add_inline_editing_attributes( 'title', 'basic' );
?>
<div class="footer-widget newsletter-widget">
<?php if ( $settings['title'] ) : ?>
<h4 class="footer-title">
<span <?php echo $this->get_render_attribute_string( 'title' ); ?>>
<?php echo wp_kses_post( $settings['title'] ); ?>
</span>
</h4>
<?php endif; ?>
<?php if ( $settings['form'] ) :
echo do_shortcode( '[contact-form-7 id="'. esc_attr( $settings['form'] ) .'"]' );
endif; ?>
</div>
<?php
}
}
Plugin::instance()->widgets_manager->register_widget_type( new Lesya_Footer_Subscribe_Widget() );