File "post-grid.php"
Full Path: /home/amervokv/ecomlive.net/wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid.php
File size: 9 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Elementor;
use \Elementor\ElementsKit_Widget_Post_Grid_Handler as Handler;
use \ElementsKit_Lite\Modules\Controls\Controls_Manager as ElementsKit_Controls_Manager;
if ( ! defined( 'ABSPATH' ) ) exit;
class ElementsKit_Widget_Post_Grid extends Widget_Base {
use \ElementsKit_Lite\Widgets\Widget_Notice;
public $base;
public function get_name() {
return Handler::get_name();
}
public function get_title() {
return Handler::get_title();
}
public function get_icon() {
return Handler::get_icon();
}
public function get_keywords() {
return Handler::get_keywords();
}
public function get_categories() {
return Handler::get_categories();
}
public function get_help_url() {
return 'https://wpmet.com/doc/post-grid/';
}
protected function is_dynamic_content(): bool {
return false;
}
protected function register_controls() {
$this->start_controls_section(
'content_tab',
[
'label' => esc_html__('Widget settings', 'elementskit-lite'),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'post_cat',
[
'label' =>esc_html__('Select Categories', 'elementskit-lite'),
'type' => ElementsKit_Controls_Manager::AJAXSELECT2,
'description' => esc_html__('To avail this option you need to set/add a featured image to posts..', 'elementskit-lite'),
'options' =>'ajaxselect2/category',
'label_block' => true,
'multiple' => true,
]
);
$this->add_control(
'post_count',
[
'label' => esc_html__( 'Post count', 'elementskit-lite' ),
'type' => Controls_Manager::NUMBER,
'default' => esc_html__( '3', 'elementskit-lite' )
]
);
$this->add_responsive_control(
'count_col',
[
'label' => esc_html__( 'Select Column', 'elementskit-lite' ),
'type' => Controls_Manager::SELECT,
'default' => 'ekit___column-2',
'tablet_default' => 'ekit___column-2',
'mobile_default' => 'ekit___column-2',
'options' => [
'ekit___column-2' => esc_html__( '2 Column', 'elementskit-lite' ),
'ekit___column-3' => esc_html__( '3 Column', 'elementskit-lite' ),
'ekit___column-4' => esc_html__( '4 Column', 'elementskit-lite' ),
],
]
);
$this->add_control(
'ekit_post_grid_title_word_wrap',
[
'label' => esc_html__( 'Word Wrap', 'elementskit-lite' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Show', 'elementskit-lite' ),
'label_off' => esc_html__( 'Hide', 'elementskit-lite' ),
'return_value' => 'yes',
'default' => 'no',
'selectors' => [
'{{WRAPPER}} .ekit-post_grid-title' => 'white-space: nowrap; overflow: hidden; text-overflow: ellipsis;',
],
]
);
$this->end_controls_section();
// Style
$this->start_controls_section(
'style_tab',
[
'label' => esc_html__( 'Grid Styles', 'elementskit-lite' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_responsive_control(
'post_grid_item_height',
[
'label' => esc_html__( 'Use Fixed Height', 'elementskit-lite' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 30,
'max' => 1000,
'step' => 1,
]
],
'devices' => [ 'desktop', 'tablet', 'mobile' ],
'desktop_default' => [
'size' => 350,
'unit' => 'px',
],
'tablet_default' => [
'size' => 200,
'unit' => 'px',
],
'mobile_default' => [
'size' => 150,
'unit' => 'px',
],
'selectors' => [
'{{WRAPPER}} .post_grid_img_thumb' => 'height: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_control(
'bottom_space',
[
'label' => esc_html__( 'Bottom Space', 'elementskit-lite' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 10,
'max' => 100,
'step' => 1,
]
],
'selectors' => [
'{{WRAPPER}} .tab__post__single--item' => 'margin-bottom: {{SIZE}}{{UNIT}};',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'title_style',
[
'label' => esc_html__( 'Title', 'elementskit-lite' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'title_font',
'label' => esc_html__( 'Typography', 'elementskit-lite' ),
'selector' => '{{WRAPPER}} .ekit-post_grid-title',
]
);
$this->start_controls_tabs(
'title_style_tabs'
);
$this->add_control(
'title_color_normal',
[
'label' => esc_html__( 'Color', 'elementskit-lite' ),
'type' => Controls_Manager::COLOR,
'default' => 'inherit',
'selectors' => [
'{{WRAPPER}} .tab__post__single--item .ekit-post_grid-title > a' => 'color: {{VALUE}}; transition: all 0.3s ease;',
],
]
);
$this->add_control(
'title_color_hover',
[
'label' => esc_html__( 'Hover Color', 'elementskit-lite' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .tab__post__single--item:hover .ekit-post_grid-title > a' => 'color: {{VALUE}}',
],
]
);
$this->add_responsive_control(
'ekit-post_grid-title_margin',
[
'label' => esc_html__( 'Margin', 'elementskit-lite' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .ekit-post_grid-title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_section();
$this->insert_pro_message();
}
protected function render( ) {
echo '<div class="ekit-wid-con" >';
$this->render_raw();
echo '</div>';
}
protected function render_raw( ) {
$settings = $this->get_settings();
extract($settings);
$query = array(
'post_type' => 'post',
'post_status' => 'publish',
'cat' => $post_cat,
'posts_per_page' => $post_count,
);
$tablet_responsive_class = isset($settings['count_col_tablet']) ? $settings['count_col_tablet'] : 'ekit___column-2';
$mobile_responsive_class = isset($settings['count_col_mobile']) ? $settings['count_col_mobile'] : 'ekit___column-2';
$this->add_render_attribute(
[
'ekit-single-item' => [
'class' => [
'tab__post__single--item',
$count_col,
'tablet-' . $tablet_responsive_class,
'mobile-' . $mobile_responsive_class,
'post-count-' . $post_count
],
],
]
);
?>
<div class="ekit--tab__post__details ekit-post_grid">
<?php $xs_query = new \WP_Query( $query ); ?>
<?php if($xs_query->have_posts()): ?>
<?php while ($xs_query->have_posts()) : ?>
<?php $xs_query->the_post(); ?>
<?php if(has_post_thumbnail()): ?>
<div <?php echo $this->get_render_attribute_string('ekit-single-item'); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped by elementor ?>>
<a href="<?php echo esc_url(get_the_permalink()); ?>" class="tab__post--header" aria-label="url">
<?php $img_url = get_the_post_thumbnail_url(get_the_ID(), 'medium'); ?>
<div class="post_grid_img_thumb" style="background-image: url('<?php echo esc_url($img_url); ?>')"></div>
<?php if(get_post_format() == 'video') : ?>
<div class="tab__post--icon">
<span class="fa fa-play-circle-o"></span>
</div>
<?php endif; ?>
</a>
<h3 class="tab__post--title ekit-post_grid-title"><a href="<?php echo esc_url(get_the_permalink()); ?>"><?php the_title(); ?></a></h3>
</div>
<?php endif; ?>
<?php endwhile;
endif;
wp_reset_postdata(); ?>
</div>
<?php
}
}