<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
/**
* Blockquote Widget.
*
* @version 1.0
* @author themebubble
* @category Classes
* @author themebubble
*/
class RS_Recent_News_Masonry_Widget extends Widget_Base {
public function get_name() {
return 'rs-recent-news-widget';
}
public function get_title() {
return 'Recent News';
}
public function get_icon() {
return 'elem_icon vc_image_recent_news_icon';
}
public function get_categories() {
return array('magplus-elementor');
}
protected function _register_controls() {
$this->start_controls_section(
'recent_news_general_settings',
array(
'label' => esc_html__( 'General' , 'magplus-addons' )
)
);
$this->add_control(
'post_per_page',
array(
'label' => esc_html__( 'Post Per Page', 'magplus-addons' ),
'default' => 3,
'type' => Controls_Manager::TEXT,
'label_block' => true,
)
);
$this->add_control(
'excerpt_length',
array(
'label' => esc_html__( 'Excerpt Length', 'magplus-addons' ),
'default' => 35,
'type' => Controls_Manager::TEXT,
'label_block' => true,
)
);
$this->add_control(
'show_pagination',
array(
'label' => esc_html__( 'Show Pagination', 'magplus-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'yes',
'label_block' => true,
'options' => array(
'yes' => 'Yes',
'no' => 'No'
),
)
);
$this->add_control(
'pagination_style',
array(
'label' => esc_html__( 'Pagination Style', 'magplus-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'default',
'options' => array(
'default' => 'Default',
'load-more' => 'Load More',
'infinite-scroll' => 'Infinite Scroll'
),
'label_block' => true,
'condition' => array('show_pagination' => 'yes')
)
);
$this->add_control(
'show_category',
array(
'label' => esc_html__( 'Show Category', 'magplus-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'yes',
'options' => array(
'yes' => 'Yes',
'no' => 'No'
),
'label_block' => true,
)
);
$this->add_control(
'show_author',
array(
'label' => esc_html__( 'Show Author', 'magplus-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'yes',
'options' => array(
'yes' => 'Yes',
'no' => 'No'
),
'label_block' => true,
)
);
$this->add_control(
'show_date',
array(
'label' => esc_html__( 'Show Date', 'magplus-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'yes',
'options' => array(
'yes' => 'Yes',
'no' => 'No'
),
'label_block' => true,
)
);
$this->add_control(
'show_comment',
array(
'label' => esc_html__( 'Show Comment', 'magplus-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'yes',
'options' => array(
'yes' => 'Yes',
'no' => 'No'
),
'label_block' => true,
)
);
$this->add_control(
'show_views',
array(
'label' => esc_html__( 'Show Views', 'magplus-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'yes',
'options' => array(
'yes' => 'Yes',
'no' => 'No'
),
'label_block' => true,
)
);
$this->add_control(
'orderby',
array(
'label' => esc_html__( 'Order By', 'magplus-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'ID',
'options' => array_flip(array(
'ID' => 'ID',
'Author' => 'author',
'Post Title' => 'title',
'Date' => 'date',
'Last Modified' => 'modified',
'Random Order' => 'rand',
'Comment Count' => 'comment_count',
'Menu Order' => 'menu_order',
)),
'label_block' => true,
)
);
$this->end_controls_section();
$this->start_controls_section('section_general_style',
array(
'label' => esc_html__('General Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_group_control(
Group_Control_Background::get_type(),
array(
'name' => 'background',
'label' => esc_html__('Background', 'magplus-addons'),
'types' => array('classic', 'gradient'),
'selector' => '{{WRAPPER}} .tt-post',
)
);
$this->add_responsive_control(
'margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_responsive_control(
'padding',
array(
'label' => esc_html__('Padding', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'border',
'selector' => '{{WRAPPER}} .tt-post'
)
);
$this->add_responsive_control(
'border_radius',
array(
'label' => esc_html__('Border Raidus', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'box_shadow',
'label' => esc_html__('Box Shadow', 'magplus-addons'),
'selector' => '{{WRAPPER}} .tt-post',
)
);
$this->end_controls_section();
$this->start_controls_section('section_category_style',
array(
'label' => esc_html__('Category Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'category_margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post-cat a' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'category_typography',
'selector' => '{{WRAPPER}} .tt-post-cat a',
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
)
);
$this->start_controls_tabs('category_style');
$this->start_controls_tab(
'category_color_normal',
array(
'label' => esc_html__('Normal', 'magplus-addons'),
)
);
$this->add_control('category_normal_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-cat a, {{WRAPPER}} .tt-post-cat' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'category_color_hover',
array(
'label' => esc_html__('Hover', 'magplus-addons'),
)
);
$this->add_control('category_hover_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-cat a:hover' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
$this->start_controls_section('section_title_style',
array(
'label' => esc_html__('Title Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'title_margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post-title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'title_typography',
'selector' => '{{WRAPPER}} .tt-post-title',
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
)
);
$this->start_controls_tabs('title_style');
$this->start_controls_tab(
'title_color_normal',
array(
'label' => esc_html__('Normal', 'magplus-addons'),
)
);
$this->add_control('title_normal_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-title' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'title_color_hover',
array(
'label' => esc_html__('Hover', 'magplus-addons'),
)
);
$this->add_control('title_hover_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-title:hover' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
$this->start_controls_section('section_content_style',
array(
'label' => esc_html__('Content Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'content_margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .simple-text p' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_control(
'content_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .simple-text p' => 'color: {{VALUE}};',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'content_typography',
'selector' => '{{WRAPPER}} .simple-text p',
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
)
);
$this->end_controls_section();
$this->start_controls_section('section_author_style',
array(
'label' => esc_html__('Author Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'author_margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post-author-name a' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'author_typography',
'selector' => '{{WRAPPER}} .tt-post-author-name a',
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
)
);
$this->start_controls_tabs('author_style');
$this->start_controls_tab(
'author_color_normal',
array(
'label' => esc_html__('Normal', 'magplus-addons'),
)
);
$this->add_control('author_normal_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-author-name a' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'author_color_hover',
array(
'label' => esc_html__('Hover', 'magplus-addons'),
)
);
$this->add_control('author_hover_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-author-name a:hover' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
$this->start_controls_section('section_date_style',
array(
'label' => esc_html__('Date Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'date_margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post-date' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'date_typography',
'selector' => '{{WRAPPER}} .tt-post-date',
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
)
);
$this->add_control('date_normal_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-date' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_section();
$this->start_controls_section('section_comment_style',
array(
'label' => esc_html__('Comment Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'comment_margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post-comment' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'comment_typography',
'selector' => '{{WRAPPER}} .tt-post-comment',
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
)
);
$this->add_control('comment_normal_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-comment, {{WRAPPER}} .tt-post-comment i' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_section();
$this->start_controls_section('section_views_style',
array(
'label' => esc_html__('Views Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'views_margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} .tt-post-views' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'views_typography',
'selector' => '{{WRAPPER}} .tt-post-views',
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
)
);
$this->add_control('views_normal_color',
array(
'label' => esc_html__('Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .tt-post-views, {{WRAPPER}} .tt-post-views i' => 'color: {{VALUE}};',
),
)
);
$this->end_controls_section();
$this->start_controls_section('section_pagination_style',
array(
'label' => esc_html__('Pagination Style', 'magplus-addons'),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'pagination_margin',
array(
'label' => esc_html__('Margin', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} ul.page-numbers li' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->start_controls_tabs('pagination_color_style');
$this->start_controls_tab(
'pagination_color_normal',
array(
'label' => esc_html__('Normal', 'magplus-addons'),
)
);
$this->add_control('pagination_normal_bg_color',
array(
'label' => esc_html__('Background Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} ul.page-numbers a' => 'background-color: {{VALUE}};',
),
)
);
$this->add_control('pagination_normal_text_color',
array(
'label' => esc_html__('Text Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} ul.page-numbers a' => 'color: {{VALUE}};',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'pagination_normal_border',
'selector' => '{{WRAPPER}} ul.page-numbers a'
)
);
$this->add_responsive_control(
'pagination_normal_border_radius',
array(
'label' => esc_html__('Border Raidus', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} ul.page-numbers a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'pagination_color_hover',
array(
'label' => esc_html__('Hover', 'magplus-addons'),
)
);
$this->add_control('pagination_hover_bg_color',
array(
'label' => esc_html__('Background Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} ul.page-numbers li a:hover' => 'background-color: {{VALUE}};',
),
)
);
$this->add_control('pagination_hover_text_color',
array(
'label' => esc_html__('Text Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} ul.page-numbers li a:hover' => 'color: {{VALUE}};',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'pagination_hover_border',
'selector' => '{{WRAPPER}} ul.page-numbers li:hover'
)
);
$this->add_responsive_control(
'pagination_hover_border_radius',
array(
'label' => esc_html__('Border Raidus', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} ul.page-numbers li:hover' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'pagination_color_active',
array(
'label' => esc_html__('Active', 'magplus-addons'),
)
);
$this->add_control('pagination_active_bg_color',
array(
'label' => esc_html__('Background Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} ul.page-numbers li .current' => 'background-color: {{VALUE}};',
),
)
);
$this->add_control('pagination_active_text_color',
array(
'label' => esc_html__('Text Color', 'magplus-addons'),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} ul.page-numbers li .current' => 'color: {{VALUE}};',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'pagination_active_border',
'selector' => '{{WRAPPER}} ul.page-numbers li .current'
)
);
$this->add_responsive_control(
'pagination_active_border_radius',
array(
'label' => esc_html__('Border Raidus', 'magplus-addons'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array('px', 'em', '%'),
'selectors' => array(
'{{WRAPPER}} ul.page-numbers li .current' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings();
$atts = array(
'post_per_page' => $settings['post_per_page'],
'excerpt_length' => $settings['excerpt_length'],
'pagination' => $settings['show_pagination'],
'pagination_style' => $settings['pagination_style'],
'show_category' => $settings['show_category'],
'show_date' => $settings['show_date'],
'show_comment' => $settings['show_comment'],
'show_author' => $settings['show_author'],
'show_views' => $settings['show_views'],
'orderby' => $settings['orderby']
);
echo rs_recent_news($atts);
}
}
Plugin::instance()->widgets_manager->register_widget_type( new RS_Recent_News_Masonry_Widget() ); |