Viewing File: /home/maglabs/sogefab/wp-content/themes/sofass/inc/vendors/elementor/widgets/features_box.php
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class Sofass_Elementor_Features_Box extends Widget_Base {
public function get_name() {
return 'sofass_features_box';
}
public function get_title() {
return esc_html__( 'Goal Features Box', 'sofass' );
}
public function get_icon() {
return 'eicon-image-box';
}
public function get_categories() {
return [ 'sofass-elements' ];
}
protected function register_controls() {
$this->start_controls_section(
'content_section',
[
'label' => esc_html__( 'Features Box', 'sofass' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$repeater = new Repeater();
$repeater->add_control(
'image_icon',
[
'label' => esc_html__( 'Image or Icon', 'sofass' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'icon' => esc_html__('Icon', 'sofass'),
'image' => esc_html__('Image', 'sofass'),
),
'default' => 'image'
]
);
$repeater->add_control(
'icon',
[
'label' => esc_html__( 'Icon', 'sofass' ),
'type' => Controls_Manager::ICON,
'default' => 'fa fa-star',
'condition' => [
'image_icon' => 'icon',
],
]
);
$repeater->add_control(
'image',
[
'label' => esc_html__( 'Choose Image', 'sofass' ),
'type' => Controls_Manager::MEDIA,
'dynamic' => [
'active' => true,
],
'default' => [
'url' => Utils::get_placeholder_image_src(),
],
'condition' => [
'image_icon' => 'image',
],
]
);
$repeater->add_group_control(
Group_Control_Image_Size::get_type(),
[
'name' => 'thumbnail', // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`.
'default' => 'full',
'separator' => 'none',
'condition' => [
'image_icon' => 'image',
],
]
);
$repeater->add_control(
'title_text',
[
'label' => esc_html__( 'Title & Description', 'sofass' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__( 'This is the heading', 'sofass' ),
'placeholder' => esc_html__( 'Enter your title', 'sofass' ),
]
);
$repeater->add_control(
'description_text',
[
'label' => esc_html__( 'Content', 'sofass' ),
'type' => Controls_Manager::TEXTAREA,
'default' => esc_html__( 'Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.', 'sofass' ),
'placeholder' => esc_html__( 'Enter your description', 'sofass' ),
'separator' => 'none',
'rows' => 10,
'show_label' => false,
]
);
$repeater->add_control(
'link',
[
'label' => esc_html__( 'Link to', 'sofass' ),
'type' => Controls_Manager::URL,
'placeholder' => esc_html__( 'https://your-link.com', 'sofass' ),
'separator' => 'before',
]
);
$this->add_control(
'features',
[
'label' => esc_html__( 'Features Box', 'sofass' ),
'type' => Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
]
);
$this->add_control(
'style',
[
'label' => esc_html__( 'Style', 'sofass' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'style1' => esc_html__('Style 1 (default)', 'sofass'),
'style2' => esc_html__('Style 2 (Center)', 'sofass'),
'style3' => esc_html__('Style 3 (Box)', 'sofass'),
),
'default' => 'style1'
]
);
$this->add_control(
'layout_type',
[
'label' => esc_html__( 'Layout', 'sofass' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'carousel' => esc_html__('Carousel', 'sofass'),
'grid' => esc_html__('Grid', 'sofass'),
),
'default' => 'carousel',
]
);
$columns = range( 1, 12 );
$columns = array_combine( $columns, $columns );
$this->add_responsive_control(
'columns',
[
'label' => esc_html__( 'Columns', 'sofass' ),
'type' => Controls_Manager::SELECT,
'options' => $columns,
'frontend_available' => true,
'default' => 3,
]
);
$this->add_responsive_control(
'slides_to_scroll',
[
'label' => esc_html__( 'Slides to Scroll', 'sofass' ),
'type' => Controls_Manager::SELECT,
'description' => esc_html__( 'Set how many slides are scrolled per swipe.', 'sofass' ),
'options' => $columns,
'condition' => [
'columns!' => '1',
'layout_type' => 'carousel',
],
'frontend_available' => true,
'default' => 3,
]
);
$this->add_control(
'show_nav',
[
'label' => esc_html__( 'Show Nav', 'sofass' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => esc_html__( 'Hide', 'sofass' ),
'label_off' => esc_html__( 'Show', 'sofass' ),
'condition' => [
'layout_type' => 'carousel',
],
]
);
$this->add_control(
'show_pagination',
[
'label' => esc_html__( 'Show Pagination', 'sofass' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => esc_html__( 'Hide', 'sofass' ),
'label_off' => esc_html__( 'Show', 'sofass' ),
'condition' => [
'layout_type' => 'carousel',
],
]
);
$this->add_control(
'autoplay',
[
'label' => esc_html__( 'Autoplay', 'sofass' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Yes', 'sofass' ),
'label_off' => esc_html__( 'No', 'sofass' ),
'return_value' => true,
'default' => true,
'condition' => [
'layout_type' => 'carousel',
],
]
);
$this->add_control(
'infinite_loop',
[
'label' => esc_html__( 'Infinite Loop', 'sofass' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Yes', 'sofass' ),
'label_off' => esc_html__( 'No', 'sofass' ),
'return_value' => true,
'default' => true,
'condition' => [
'layout_type' => 'carousel',
],
]
);
$this->add_responsive_control(
'alignment',
[
'label' => esc_html__( 'Alignment', 'sofass' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'left' => [
'title' => esc_html__( 'Left', 'sofass' ),
'icon' => 'fa fa-align-left',
],
'center' => [
'title' => esc_html__( 'Center', 'sofass' ),
'icon' => 'fa fa-align-center',
],
'right' => [
'title' => esc_html__( 'Right', 'sofass' ),
'icon' => 'fa fa-align-right',
],
'justify' => [
'title' => esc_html__( 'Justified', 'sofass' ),
'icon' => 'fa fa-align-justify',
],
],
'default' => '',
'selectors' => [
'{{WRAPPER}} .item-inner-features' => 'text-align: {{VALUE}};',
],
]
);
$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__( 'Style', 'sofass' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'icon_color',
[
'label' => esc_html__( 'Icon Color', 'sofass' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
// Stronger selector to avoid section style from overwriting
'{{WRAPPER}} .features-box-image' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'icon_hover_color',
[
'label' => esc_html__( 'Icon Hover Color', 'sofass' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
// Stronger selector to avoid section style from overwriting
'{{WRAPPER}} .item-inner-features:hover .features-box-image' => 'color: {{VALUE}};',
],
]
);
$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 a' => 'color: {{VALUE}};',
'{{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 a, {{WRAPPER}} .title',
]
);
$this->add_control(
'desc_color',
[
'label' => esc_html__( 'Description Color', 'sofass' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
// Stronger selector to avoid section style from overwriting
'{{WRAPPER}} .description' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'label' => esc_html__( 'Description Typography', 'sofass' ),
'name' => 'desc_typography',
'selector' => '{{WRAPPER}} .description',
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings();
extract( $settings );
if ( !empty($features) ) {
$columns = !empty($columns) ? $columns : 3;
$columns_tablet = !empty($columns_tablet) ? $columns_tablet : 2;
$columns_mobile = !empty($columns_mobile) ? $columns_mobile : 1;
$slides_to_scroll = !empty($slides_to_scroll) ? $slides_to_scroll : $columns;
$slides_to_scroll_tablet = !empty($slides_to_scroll_tablet) ? $slides_to_scroll_tablet : $columns_tablet;
$slides_to_scroll_mobile = !empty($slides_to_scroll_mobile) ? $slides_to_scroll_mobile : 1;
?>
<div class="widget widget-features-box no-margin <?php echo esc_attr($el_class); ?>">
<?php if($layout_type == 'carousel') {?>
<div class="slick-carousel <?php echo esc_attr( ( $columns >= count($features) )?'hidden-dot':'' ); ?>"
data-items="<?php echo esc_attr($columns); ?>" data-smallmedium="<?php echo esc_attr( $columns_tablet ); ?>" data-extrasmall="<?php echo esc_attr($columns_mobile); ?>" data-slidestoscroll="<?php echo esc_attr($slides_to_scroll); ?>" data-slidestoscroll_smallmedium="<?php echo esc_attr( $slides_to_scroll_tablet ); ?>" data-slidestoscroll_extrasmall="<?php echo esc_attr($slides_to_scroll_mobile); ?>" data-pagination="<?php echo esc_attr($show_pagination ? 'true' : 'false'); ?>" data-nav="<?php echo esc_attr($show_nav ? 'true' : 'false'); ?>" data-infinite="<?php echo esc_attr( $infinite_loop ? 'true' : 'false' ); ?>" data-autoplay="<?php echo esc_attr( $autoplay ? 'true' : 'false' ); ?>">
<?php foreach ($features as $item): ?>
<div class="item">
<div class="item-inner-features <?php echo esc_attr($style); ?>">
<?php
$has_content = ! empty( $item['title_text'] ) || ! empty( $item['description_text'] );
$html = '';
if ( $item['image_icon'] == 'image' ) {
if ( ! empty( $item['image']['url'] ) ) {
$this->add_render_attribute( 'image', 'src', $item['image']['url'] );
$this->add_render_attribute( 'image', 'alt', Control_Media::get_image_alt( $item['image'] ) );
$this->add_render_attribute( 'image', 'title', Control_Media::get_image_title( $item['image'] ) );
$image_html = Group_Control_Image_Size::get_attachment_image_html( $item, 'thumbnail', 'image' );
if ( ! empty( $item['link']['url'] ) ) {
$image_html = '<a href="'.esc_url($item['link']['url']).'" target="'.esc_attr($item['link']['is_external'] ? '_blank' : '_self').'" '.($item['link']['nofollow'] ? 'rel="nofollow"' : '').'>' . $image_html . '</a>';
}
$html .= '<div class="features-box-image img">' . $image_html . '</div>';
}
} elseif ( $item['image_icon'] == 'icon' && !empty($item['icon'])) {
$html .= '<div class="features-box-image icon"><i class="'.$item['icon'].'"></i></div>';
}
if ( $has_content ) {
$html .= '<div class="features-box-content">';
if ( ! empty( $item['title_text'] ) ) {
$title_html = $item['title_text'];
if ( ! empty( $item['link']['url'] ) ) {
$html .= '<a href="'.esc_url($item['link']['url']).'" target="'.esc_attr($item['link']['is_external'] ? '_blank' : '_self').'" '.($item['link']['nofollow'] ? 'rel="nofollow"' : '').'><h3 class="title">'.$title_html.'</h3></a>';
} else {
$html .= sprintf( '<h3 class="title">%1$s</h3>', $title_html );
}
}
if ( ! empty( $item['description_text'] ) ) {
$html .= sprintf( '<div class="description">%1$s</div>', $item['description_text'] );
}
$html .= '</div>';
}
echo trim($html);
?>
</div>
</div>
<?php endforeach; ?>
</div>
<?php }elseif($layout_type == 'grid'){
$mdcol = 12/$columns;
$smcol = 12/$columns_tablet;
$xscol = 12/$columns_mobile;
?>
<div class="row list-vertical">
<?php foreach ($features as $item): ?>
<div class="item col-md-<?php echo esc_attr($mdcol); ?> col-sm-<?php echo esc_attr($smcol); ?> col-xs-<?php echo esc_attr($xscol); ?>">
<div class="item-inner-features <?php echo esc_attr($style); ?>">
<?php
$has_content = ! empty( $item['title_text'] ) || ! empty( $item['description_text'] );
$html = '';
if ( $item['image_icon'] == 'image' ) {
if ( ! empty( $item['image']['url'] ) ) {
$this->add_render_attribute( 'image', 'src', $item['image']['url'] );
$this->add_render_attribute( 'image', 'alt', Control_Media::get_image_alt( $item['image'] ) );
$this->add_render_attribute( 'image', 'title', Control_Media::get_image_title( $item['image'] ) );
$image_html = Group_Control_Image_Size::get_attachment_image_html( $item, 'thumbnail', 'image' );
if ( ! empty( $item['link']['url'] ) ) {
$image_html = '<a href="'.esc_url($item['link']['url']).'" target="'.esc_attr($item['link']['is_external'] ? '_blank' : '_self').'" '.($item['link']['nofollow'] ? 'rel="nofollow"' : '').'>' . $image_html . '</a>';
}
$html .= '<div class="features-box-image img">' . $image_html . '</div>';
}
} elseif ( $item['image_icon'] == 'icon' && !empty($item['icon'])) {
$html .= '<div class="features-box-image icon"><i class="'.$item['icon'].'"></i></div>';
}
if ( $has_content ) {
$html .= '<div class="features-box-content">';
if ( ! empty( $item['title_text'] ) ) {
$title_html = $item['title_text'];
if ( ! empty( $item['link']['url'] ) ) {
$html .= '<a href="'.esc_url($item['link']['url']).'" target="'.esc_attr($item['link']['is_external'] ? '_blank' : '_self').'" '.($item['link']['nofollow'] ? 'rel="nofollow"' : '').'><h3 class="title">'.$title_html.'</h3></a>';
} else {
$html .= sprintf( '<h3 class="title">%1$s</h3>', $title_html );
}
}
if ( ! empty( $item['description_text'] ) ) {
$html .= sprintf( '<div class="description">%1$s</div>', $item['description_text'] );
}
$html .= '</div>';
}
echo trim($html);
?>
</div>
</div>
<?php endforeach; ?>
</div>
<?php } ?>
</div>
<?php
}
}
}
if ( version_compare(ELEMENTOR_VERSION, '3.5.0', '<') ) {
Plugin::instance()->widgets_manager->register_widget_type( new Sofass_Elementor_Features_Box );
} else {
Plugin::instance()->widgets_manager->register( new Sofass_Elementor_Features_Box );
}
Back to Directory
File Manager