PluginProbe
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets / 4.5.3
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets v4.5.3
4.5.4 4.2.1 4.2.2 4.2.3 4.5.0 4.5.2 4.5.3 4.2.0 4.1.18 4.1.17 4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 All 146 releases
ultimate-post-kit / modules / ramble-grid / module.php

module.php in Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets 4.5.3, at modules/ramble-grid/module.php

236 lines 12.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace UltimatePostKit\Modules\RambleGrid;
3 use UltimatePostKit\Traits\Global_Widget_Functions;
4 use Elementor\Icons_Manager;
5
6 use UltimatePostKit\Base\Ultimate_Post_Kit_Module_Base;
7 use UltimatePostKit\Utils;
8
9 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
10
11 class Module extends Ultimate_Post_Kit_Module_Base {
12
13 use Global_Widget_Functions;
14
15 public function __construct() {
16 parent::__construct();
17
18 add_action( 'wp_ajax_nopriv_upk_ramble_grid_loadmore_posts', [ $this, 'callback_ajax_loadmore_posts' ] );
19 add_action( 'wp_ajax_upk_ramble_grid_loadmore_posts', [ $this, 'callback_ajax_loadmore_posts' ] );
20 }
21
22 public function get_name() {
23 return 'ramble-grid';
24 }
25
26 public function get_widgets() {
27
28 $widgets = [
29 'Ramble_Grid',
30 ];
31
32 return $widgets;
33 }
34
35 public function callback_ajax_loadmore_posts() {
36 // Verify the front-end nonce (sent by UltimatePostKitConfig.nonce) before
37 // processing this public load-more request.
38 if ( ! check_ajax_referer( 'upk-site', 'nonce', false ) ) {
39 wp_send_json_error( array( 'message' => esc_html__( 'Security check failed.', 'ultimate-post-kit' ) ), 403 );
40 }
41
42
43 $settings = [];
44
45 if ( isset( $_POST['settings'] ) && is_array( $_POST['settings'] ) ) {
46 $settings = map_deep( wp_unslash( $_POST['settings'] ), 'sanitize_text_field' );
47 }
48
49 $post_type = $settings['posts_source'] ?? 'post';
50
51 $settings = array_merge(
52 [
53 'posts_source' => 'post',
54 'posts_orderby' => 'date',
55 'posts_order' => 'DESC',
56 'posts_ignore_sticky_posts' => 'no',
57 'posts_only_with_featured_image' => 'no',
58 'posts_select_date' => '',
59 'posts_exclude_by' => [],
60 'posts_include_by' => [],
61 'posts_per_page' => isset( $_POST['per_page'] ) ? absint( $_POST['per_page'] ) : 0,
62 'posts_offset' => isset( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 0,
63 ],
64 $settings
65 );
66
67 $ajaxposts = $this->query_args( $settings );
68
69 ob_start();
70 $found_posts = false;
71
72 if ( $ajaxposts->have_posts() ) {
73
74 while ( $ajaxposts->have_posts() ) {
75 $ajaxposts->the_post();
76 $found_posts = true;
77
78 $title = get_the_title();
79 $post_link = esc_url( get_permalink() );
80 $author_url = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) );
81 $author_name = esc_html( get_the_author() );
82 $meta_sep = $settings['meta_separator'] ?? '/';
83 $title_tag = Utils::get_valid_html_tag($settings['title_tags']);
84
85 ?>
86 <div <?php if ( ! empty( $settings['global_link'] ) && $settings['global_link'] === 'yes' ) { printf( 'onclick="window.open(\'%s\', \'_self\')"', esc_url( $post_link ) ); } ?> class="upk-item">
87 <div class="upk-image-wrap">
88 <?php $this->render_image(get_post_thumbnail_id(), 'large'); ?>
89
90 <div class="upk-content">
91 <div class="upk-default-show">
92 <div class="upk-date-cetagory-wrap">
93 <div class="upk-date">
94 <?php
95 if ($settings['show_date'] === 'yes' && $settings['human_diff_time'] !== 'yes') {
96 echo esc_html(get_the_date());
97 }
98 if ($settings['human_diff_time'] === 'yes') {
99 echo esc_html(ultimate_post_kit_post_time_diff($settings['human_diff_time_short'] !== 'yes' ? 'short' : ''));
100 }
101 ?>
102 </div>
103 <?php if ($settings['show_time'] === 'yes') : ?>
104 <div class="upk-post-time">
105 <i class="upk-icon-clock" aria-hidden="true"></i>
106 <?php echo esc_html(get_the_time()); ?>
107 </div>
108 <?php endif; ?>
109
110 <?php if ($settings['show_category'] === 'yes') : ?>
111 <div class="upk-category">
112 <?php echo wp_kses_post(upk_get_category($post_type)); ?>
113 </div>
114 <?php endif; ?>
115 </div>
116
117 <?php if ($settings['show_title'] === 'yes') : ?>
118 <<?php echo esc_attr( $title_tag ); ?> class="upk-title">
119 <a
120 href="<?php echo esc_url($post_link); ?>"
121 title="<?php echo esc_attr($title); ?>"
122 class="title-animation-<?php echo esc_attr($settings['title_style']); ?>"
123 >
124 <?php echo esc_html($title); ?>
125 </a>
126 </<?php echo esc_attr( $title_tag ); ?>>
127 <?php endif; ?>
128 </div>
129
130 <div class="upk-default-hide">
131 <?php if (
132 $settings['show_author_avatar'] === 'yes' ||
133 $settings['show_author_name'] === 'yes' ||
134 $settings['show_date'] === 'yes' ||
135 $settings['show_reading_time'] === 'yes'
136 ) : ?>
137 <div class="upk-meta">
138 <?php if ($settings['show_author_avatar'] === 'yes') : ?>
139 <div class="upk-author-image">
140 <?php echo wp_kses_post(get_avatar(get_the_author_meta('ID'), 48)); ?>
141 </div>
142 <?php endif; ?>
143
144 <div class="upk-author-name-date-wrap">
145 <?php if ($settings['show_author_name'] === 'yes') : ?>
146 <div class="upk-author-name">
147 <a href="<?php echo esc_url($author_url); ?>"><?php echo esc_html($author_name); ?></a>
148 </div>
149 <?php endif; ?>
150
151 <?php if ($settings['show_date'] === 'yes' || $settings['show_reading_time'] === 'yes') : ?>
152 <div class="upk-date-reading-time" data-separator="<?php echo esc_html($meta_sep); ?>">
153 <?php if ($settings['show_date'] === 'yes') : ?>
154 <div class="upk-date">
155 <?php
156 if ($settings['human_diff_time'] === 'yes') {
157 echo esc_html(ultimate_post_kit_post_time_diff(
158 (($settings['human_diff_time_short'] ?? 'no') === 'yes') ? 'short' : ''
159 ));
160 } else {
161 echo get_the_date();
162 }
163 ?>
164 </div>
165 <?php endif; ?>
166
167 <?php if (function_exists('_is_upk_pro_activated') && _is_upk_pro_activated() && function_exists('ultimate_post_kit_reading_time') && ($settings['show_reading_time'] ?? '') === 'yes') : ?>
168 <div class="upk-reading-time" data-separator="<?php echo esc_html($meta_sep); ?>">
169 <?php echo esc_html(ultimate_post_kit_reading_time(get_the_content(), $settings['avg_reading_speed'], $settings['hide_seconds'] ?? 'no', $settings['hide_minutes'] ?? 'no' ) ); ?>
170 </div>
171 <?php endif; ?>
172 </div>
173 <?php endif; ?>
174 </div>
175 </div>
176 <?php endif; ?>
177
178 <?php if ($settings['show_excerpt'] === 'yes') : ?>
179 <div class="upk-text">
180 <?php
181 if (has_excerpt()) {
182 the_excerpt();
183 } else {
184 if (function_exists('ultimate_post_kit_custom_excerpt')) {
185 echo wp_kses_post(ultimate_post_kit_custom_excerpt(ultimate_post_kit_clamp_excerpt_length($settings['excerpt_length'] ?? 20, 20), false, ''));
186 } else {
187 echo esc_html(wp_trim_words(wp_strip_all_tags(get_the_content()), ultimate_post_kit_clamp_excerpt_length($settings['excerpt_length'] ?? 20, 20)));
188 }
189 }
190 ?>
191 </div>
192 <?php endif; ?>
193 </div>
194 </div>
195
196 <div class="upk-btn-comments-wrap">
197 <div class="upk-btn-wrap upk-flex">
198 <?php if ($settings['show_readmore'] === 'yes') : ?>
199 <a href="<?php echo esc_url($post_link); ?>" class="upk-readmore" target="<?php echo esc_attr($settings['upk_link_new_tab'] === 'yes' ? '_blank' : '_self'); ?>">
200 <span class="upk-flex upk-flex-middle">
201 <?php echo esc_html($settings['readmore_text'] ?? __('Read More', 'ultimate-post-kit')); ?>
202 <?php $upk_readmore_icon = ultimate_post_kit_sanitize_request_icon($settings['readmore_icon'] ?? null); ?>
203 <?php if ($upk_readmore_icon) : ?>
204 <span class="upk-readmore-btn-icon upk-flex-align-<?php echo esc_attr($settings['icon_align']); ?>">
205 <?php Icons_Manager::render_icon($upk_readmore_icon, ['aria-hidden' => 'true', 'class' => 'fa-fw']); ?>
206 </span>
207 <?php endif; ?>
208 </span>
209 </a>
210 <?php endif; ?>
211 </div>
212
213 <?php if ($settings['show_comments'] === 'yes') : ?>
214 <div class="upk-comments">
215 <?php echo esc_html( $this->upk_get_formatted_comments_count( get_the_ID() ) ); ?>
216 </div>
217 <?php endif; ?>
218 </div>
219 </div>
220 </div>
221 <?php
222 }
223 }
224
225 wp_reset_postdata();
226 $markup = ob_get_clean();
227
228 wp_send_json(
229 [
230 'success' => $found_posts,
231 'markup' => $found_posts ? $markup : esc_html__( 'No more found', 'ultimate-post-kit' ),
232 ]
233 );
234 }
235 }
236