File: /home/h278792/public_html/wp-content/plugins/ecademy-toolkit/widgets/kitchen-about-area.php
<?php
/**
* About Area Widget
*/
namespace Elementor;
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class eCademy_Kitchen_About_Area extends Widget_Base {
public function get_name() {
return 'Kitchen_About_Area';
}
public function get_title() {
return esc_html__( 'Kitchen About Area', 'ecademy-toolkit' );
}
public function get_icon() {
return 'eicon-info-box';
}
public function get_categories() {
return [ 'ecademy-elements' ];
}
protected function register_controls() {
$this->start_controls_section(
'eCademy_Kitchen_About_Area',
[
'label' => esc_html__( 'eCademy Kitchen About Area', 'ecademy-toolkit' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'top_title',
[
'label' => esc_html__( 'Top Title', 'ecademy-toolkit' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__('ABOUT ME', 'ecademy-toolkit'),
]
);
$this->add_control(
'title',
[
'label' => esc_html__( 'Title', 'ecademy-toolkit' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__('The most key element of all great home cooking: love for those you are cooking for.', 'ecademy-toolkit'),
]
);
$this->add_control(
'title_tag',
[
'label' => esc_html__( 'Title Tag', 'ecademy-toolkit' ),
'type' => Controls_Manager::SELECT,
'options' => [
'h1' => esc_html__( 'h1', 'ecademy-toolkit' ),
'h2' => esc_html__( 'h2', 'ecademy-toolkit' ),
'h3' => esc_html__( 'h3', 'ecademy-toolkit' ),
'h4' => esc_html__( 'h4', 'ecademy-toolkit' ),
'h5' => esc_html__( 'h5', 'ecademy-toolkit' ),
'h6' => esc_html__( 'h6', 'ecademy-toolkit' ),
],
'default' => 'h2',
]
);
$this->add_control(
'content',
[
'label' => esc_html__( 'Content', 'ecademy-toolkit' ),
'type' => Controls_Manager::TEXTAREA,
'default' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'ecademy-toolkit'),
]
);
$repeater = new Repeater();
$repeater->add_control(
'title', [
'label' => esc_html__( 'Title', 'ecademy-toolkit' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__( 'Expert Instruction', 'ecademy-toolkit' ),
]
);
$repeater->add_control(
'default_icon', [
'label' => esc_html__( 'Select Icon', 'ecademy-toolkit' ),
'type' => Controls_Manager::ICON,
'label_block' => true,
'options' => ecademy_flaticons(),
]
);
$this->add_control(
'lists',
[
'label' => esc_html__('List Items', 'ecademy-toolkit'),
'type' => Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
]
);
$this->add_control(
'button_text',
[
'label' => esc_html__( 'Button Text', 'ecademy-toolkit' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__('Join For Free', 'ecademy-toolkit'),
]
);
$this->add_control(
'button_icon',
[
'label' => esc_html__( 'Button Icon', 'ecademy-toolkit' ),
'type' => Controls_Manager::ICON,
'label_block' => true,
'options' => ecademy_flaticons(),
]
);
$this->add_control(
'link_type',
[
'label' => esc_html__( 'Button Link Type', 'ecademy-toolkit' ),
'type' => Controls_Manager::SELECT,
'label_block' => true,
'options' => [
'1' => esc_html__( 'Link To Page', 'ecademy-toolkit' ),
'2' => esc_html__( 'External Link', 'ecademy-toolkit' ),
],
]
);
$this->add_control(
'link_to_page',
[
'label' => esc_html__( 'Button Link Page', 'ecademy-toolkit' ),
'type' => Controls_Manager::SELECT,
'label_block' => true,
'options' => ecademy_toolkit_get_page_as_list(),
'condition' => [
'link_type' => '1',
]
]
);
$this->add_control(
'ex_link',
[
'label' => esc_html__('Button External Link', 'ecademy-toolkit'),
'type' => Controls_Manager:: TEXT,
'condition' => [
'link_type' => '2',
]
]
);
$this->add_control(
'fimage',
[
'label' => esc_html__( 'About Area Image', 'ecademy-toolkit' ),
'type' => Controls_Manager::MEDIA,
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_style',
[
'label' => esc_html__( 'Style', 'ecademy-toolkit' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'section_bg_color',
[
'label' => esc_html__( 'Section Background Color', 'ecademy-toolkit' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .kitchen-about-area' => 'background-color: {{VALUE}}',
],
]
);
$this->add_control(
'top_title_color',
[
'label' => esc_html__( 'Top Title Color', 'ecademy-toolkit' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .kitchen-about-content .sub-title' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'top_title_typography',
'label' => __( 'Top Title Typography', 'ecademy-toolkit' ),
'scheme' => Core\Schemes\Typography::TYPOGRAPHY_1,
'selector' => '{{WRAPPER}} .kitchen-about-content .sub-title',
]
);
$this->add_control(
'title_color',
[
'label' => esc_html__( 'Title Color', 'ecademy-toolkit' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .kitchen-about-content h2, .kitchen-about-content h3, .kitchen-about-content h4, .kitchen-about-content h5, .kitchen-about-content h5, .kitchen-about-content h6, .kitchen-about-content h1' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'ecademy-toolkit' ),
'scheme' => Core\Schemes\Typography::TYPOGRAPHY_1,
'selector' => '{{WRAPPER}} .kitchen-about-content h2, .kitchen-about-content h3, .kitchen-about-content h4, .kitchen-about-content h5, .kitchen-about-content h5, .kitchen-about-content h6, .kitchen-about-content h1',
]
);
$this->add_control(
'content_color',
[
'label' => esc_html__( 'Content Color', 'ecademy-toolkit' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .kitchen-about-content p' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'content_typography',
'label' => __( 'Content Typography', 'ecademy-toolkit' ),
'scheme' => Core\Schemes\Typography::TYPOGRAPHY_1,
'selector' => '{{WRAPPER}} .kitchen-about-content p',
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
global $ecademy_opt;
if( isset( $ecademy_opt['enable_lazyloader'] ) ):
$is_lazyloader = $ecademy_opt['enable_lazyloader'];
else:
$is_lazyloader = true;
endif;
// Inline Editing
$this-> add_inline_editing_attributes('title','none');
$this-> add_inline_editing_attributes('content','none');
// Button Icon
if( $settings['button_icon'] != '' ):
$btn_icon = $settings['button_icon'];
else:
$btn_icon = 'flaticon-user';
endif;
// Get Button Link
if($settings['link_type'] == 1){
$link = get_page_link( $settings['link_to_page'] );
} else {
$link = $settings['ex_link'];
}
?>
<div class="kitchen-about-area">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-md-12">
<div class="kitchen-about-content">
<span class="sub-title"><?php echo esc_html( $settings['top_title'] ); ?></span>
<<?php echo esc_attr( $settings['title_tag'] ); ?> <?php echo $this-> get_render_attribute_string('title'); ?>><?php echo esc_html( $settings['title'] ); ?></<?php echo esc_attr( $settings['title_tag'] ); ?>>
<p <?php echo $this-> get_render_attribute_string('content'); ?>><?php echo wp_kses_post( $settings['content'] ); ?></p>
<ul class="features-list">
<?php foreach( $settings['lists'] as $item ):
// Icon
$icon = $item['default_icon'];
?>
<li><span><i class="<?php echo esc_attr( $icon ); ?>"></i> <?php echo esc_html( $item['title'] ); ?></span></li>
<?php endforeach; ?>
</ul>
<div class="about-btn">
<?php if( $settings['button_text'] != '' ): ?>
<a href="<?php echo esc_url( $link ); ?>" class="default-btn"><i class="<?php echo esc_attr( $btn_icon ); ?>"></i><?php echo esc_html( $settings['button_text'] ); ?><span></span></a>
<?php endif; ?>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="kitchen-about-image">
<?php if( $settings['fimage']['url'] != '' ): ?>
<?php if( $is_lazyloader == true ): ?>
<img sm-src="<?php echo esc_url( $settings['fimage']['url'] ); ?>" alt="<?php echo esc_attr__( 'About Us' ); ?>">
<?php else: ?>
<img src="<?php echo esc_url( $settings['fimage']['url'] ); ?>" alt="<?php echo esc_attr__( 'About Us' ); ?>">
<?php endif; ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<?php
}
}
Plugin::instance()->widgets_manager->register( new eCademy_Kitchen_About_Area );