PluginProbe
MainWP Dashboard: Self-hosted WordPress Management for Agencies / 5.0.3
MainWP Dashboard: Self-hosted WordPress Management for Agencies v5.0.3
6.2 6.1.8 6.1.7 6.1.6 6.1.5 6.1.4 6.1.3 6.1.2 6.1.1 6.1 6.0.12 6.0.11 4.6.0.1 5.0 5.0.1 5.0.2 5.0.3 5.0.3.1 5.0.3.2 5.1 5.1.1 5.2 5.2.1 5.2.2 5.3 All 153 releases
mainwp / widgets / widget-mainwp-recent-posts.php

widget-mainwp-recent-posts.php in MainWP Dashboard: Self-hosted WordPress Management for Agencies 5.0.3, at widgets/widget-mainwp-recent-posts.php

823 lines 35.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * MainWP Recent Posts Widget
4 *
5 * Displays the Child Sites most recent published draft, pending, trash & future posts.
6 *
7 * @package MainWP/Widget_Recent_Posts
8 */
9
10 namespace MainWP\Dashboard;
11
12 /**
13 * Class MainWP_Recent_Posts
14 *
15 * Displays the Child Sites most recent published draft, pending, trash & future posts.
16 */
17 class MainWP_Recent_Posts {
18
19 /**
20 * Method get_class_name()
21 *
22 * @return string __CLASS__ Class Name
23 */
24 public static function get_class_name() {
25 return __CLASS__;
26 }
27
28 /**
29 * Method render()
30 *
31 * Fire off render_sites().
32 */
33 public static function render() {
34 self::render_sites();
35 }
36
37 /**
38 * Method render_sites()
39 *
40 * Build the recent posts list.
41 *
42 * @uses \MainWP\Dashboard\MainWP_DB::query()
43 * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user()
44 * @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
45 * @uses \MainWP\Dashboard\MainWP_DB::free_result()
46 * @uses \MainWP\Dashboard\MainWP_System_Utility::get_current_wpid()
47 */
48 public static function render_sites() {
49
50 /**
51 * Sets number of recent posts & pages
52 *
53 * Limits the number of recent posts & pages to show in the widget. Min 0, Max 30, Default 5.
54 *
55 * @since 4.0
56 */
57 $recent_number = apply_filters( 'mainwp_recent_posts_pages_number', 5 );
58
59 $allPosts = array();
60
61 $current_wpid = MainWP_System_Utility::get_current_wpid();
62
63 if ( isset( $_GET['client_id'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended,WordPress.Security.NonceVerification.Missing
64 $data_fields = MainWP_System_Utility::get_default_map_site_fields();
65 $data_fields[] = 'recent_posts';
66 $individual = false;
67 $client_id = isset( $_GET['client_id'] ) ? intval( $_GET['client_id'] ) : 0; // phpcs:ignore WordPress.Security.NonceVerification.Recommended,WordPress.Security.NonceVerification.Missing
68 $websites = MainWP_DB_Client::instance()->get_websites_by_client_ids( $client_id, array( 'select_data' => $data_fields ) );
69
70 if ( $websites ) {
71 foreach ( $websites as $website ) {
72 if ( empty( $website->recent_posts ) ) {
73 continue;
74 }
75
76 $posts = json_decode( $website->recent_posts, 1 );
77 if ( 0 === count( $posts ) ) {
78 continue;
79 }
80 foreach ( $posts as $post ) {
81 $post['website'] = (object) array(
82 'id' => $website->id,
83 'url' => $website->url,
84 'name' => $website->name,
85 );
86 $allPosts[] = $post;
87 }
88 }
89 }
90 } else {
91 if ( $current_wpid ) {
92 $sql = MainWP_DB::instance()->get_sql_website_by_id( $current_wpid );
93 $individual = true;
94 } else {
95 $sql = MainWP_DB::instance()->get_sql_websites_for_current_user();
96 $individual = false;
97 }
98 $websites = MainWP_DB::instance()->query( $sql );
99
100 if ( $websites ) {
101 while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) {
102 if ( empty( $website->recent_posts ) ) {
103 continue;
104 }
105
106 $posts = json_decode( $website->recent_posts, 1 );
107 if ( 0 === count( $posts ) ) {
108 continue;
109 }
110 foreach ( $posts as $post ) {
111 $post['website'] = (object) array(
112 'id' => $website->id,
113 'url' => $website->url,
114 'name' => $website->name,
115 );
116 $allPosts[] = $post;
117 }
118 }
119 MainWP_DB::free_result( $websites );
120 }
121 }
122
123 self::render_top_grid();
124
125 /**
126 * Action: mainwp_recent_posts_widget_top
127 *
128 * Fires at the top of the Recent Posts widget.
129 *
130 * @since 4.1
131 */
132 do_action( 'mainwp_recent_posts_widget_top' );
133 ?>
134 <div class="mainwp-scrolly-overflow">
135 <?php
136 self::render_published_posts( $allPosts, $recent_number, $individual );
137 self::render_draft_posts( $allPosts, $recent_number, $individual );
138 self::render_pending_posts( $allPosts, $recent_number, $individual );
139 self::render_future_posts( $allPosts, $recent_number, $individual );
140 self::render_trash_posts( $allPosts, $recent_number, $individual );
141 ?>
142 </div>
143 <?php
144 /**
145 * Action: mainwp_recent_posts_after_lists
146 *
147 * Fires after the recent posts lists, before the bottom actions section.
148 *
149 * @since 4.1
150 */
151 do_action( 'mainwp_recent_posts_after_lists' );
152 ?>
153
154 <div class="ui stackable grid mainwp-widget-footer">
155 <div class="eight wide column">
156 <a href="<?php echo esc_url( admin_url( 'admin.php?page=PostBulkManage' ) ); ?>" title="" class="ui button fluid mini green basic"><?php esc_html_e( 'Manage Posts', 'mainwp' ); ?></a>
157 </div>
158 <div class="eight wide column right aligned">
159 <a href="<?php echo esc_url( admin_url( 'admin.php?page=PostBulkAdd' ) ); ?>" title="" class="ui button fluid mini green"><?php esc_html_e( 'New Post', 'mainwp' ); ?></a>
160 </div>
161 </div>
162 <?php
163 /**
164 * Action: mainwp_recent_posts_widget_bottom
165 *
166 * Fires at the bottom of the Recent Posts widget.
167 *
168 * @since 4.1
169 */
170 do_action( 'mainwp_recent_posts_widget_bottom' );
171 }
172
173 /**
174 * Render MainWP Recent Posts Widget Header
175 */
176 public static function render_top_grid() {
177 ?>
178 <div class="ui grid mainwp-widget-header">
179 <div class="twelve wide column">
180 <h3 class="ui header handle-drag">
181 <?php
182 /**
183 * Filter: mainwp_recent_posts_widget_title
184 *
185 * Filters the recent posts widget title text.
186 *
187 * @since 4.1
188 */
189 echo esc_html( apply_filters( 'mainwp_recent_posts_widget_title', esc_html__( 'Recent Posts', 'mainwp' ) ) );
190 ?>
191 <?php if ( isset( $_GET['client_id'] ) ) : // phpcs:ignore WordPress.Security.NonceVerification.Recommended,WordPress.Security.NonceVerification.Missing ?>
192 <div class="sub header"><?php esc_html_e( 'The most recent posts from the Client websites', 'mainwp' ); ?></div>
193 <?php else : ?>
194 <div class="sub header"><?php esc_html_e( 'The most recent posts from your websites', 'mainwp' ); ?></div>
195 <?php endif; ?>
196 </h3>
197 </div>
198 <div class="four wide column right aligned">
199 <div class="ui dropdown right pointing mainwp-dropdown-tab">
200 <div class="text"><?php esc_html_e( 'Published', 'mainwp' ); ?></div>
201 <i class="dropdown icon"></i>
202 <div class="menu">
203 <a class="item recent_posts_published_lnk" data-tab="published" data-value="published" title="<?php esc_attr_e( 'Published', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Published', 'mainwp' ); ?></a>
204 <a class="item recent_posts_draft_lnk" data-tab="draft" data-value="draft" title="<?php esc_attr_e( 'Draft', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Draft', 'mainwp' ); ?></a>
205 <a class="item recent_posts_pending_lnk" data-tab="pending" data-value="pending" title="<?php esc_attr_e( 'Pending', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Pending', 'mainwp' ); ?></a>
206 <a class="item recent_posts_future_lnk" data-tab="future" data-value="future" title="<?php esc_attr_e( 'Scheduled', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Scheduled', 'mainwp' ); ?></a>
207 <a class="item recent_posts_trash_lnk" data-tab="trash" data-value="trash" title="<?php esc_attr_e( 'Trash', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
208 </div>
209 </div>
210 </div>
211 </div>
212 <?php
213 }
214
215 /**
216 * Render Published Posts.
217 *
218 * @param array $allPosts All posts data.
219 * @param int $recent_number Number of posts.
220 * @param bool $individual Determins if it's individual site dashbaord.
221 *
222 * @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
223 * @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
224 * @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
225 * @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
226 */
227 public static function render_published_posts( $allPosts, $recent_number, $individual ) {
228 $recent_posts_published = MainWP_Utility::get_sub_array_having( $allPosts, 'status', 'publish' );
229 $recent_posts_published = MainWP_Utility::sortmulti( $recent_posts_published, 'dts', 'desc' );
230 $is_demo = MainWP_Demo_Handle::is_demo_mode();
231 ?>
232 <div class="recent_posts_published ui tab active" data-tab="published">
233 <?php
234 /**
235 * Action: mainwp_recent_posts_before_publised_list
236 *
237 * Fires before the list of recent published Posts.
238 *
239 * @param array $allPosts All posts data.
240 * @param int $recent_number Number of posts.
241 *
242 * @since 4.1
243 */
244 do_action( 'mainwp_recent_posts_before_publised_list', $allPosts, $recent_number );
245 if ( 0 === count( $recent_posts_published ) ) {
246 MainWP_UI::render_empty_element_placeholder();
247 }
248 ?>
249 <div class="ui middle aligned divided selection list">
250 <?php
251 $_count = count( $recent_posts_published );
252 for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
253 if ( ! isset( $recent_posts_published[ $i ]['title'] ) || empty( $recent_posts_published[ $i ]['title'] ) ) {
254 $recent_posts_published[ $i ]['title'] = '(No Title)';
255 }
256 if ( isset( $recent_posts_published[ $i ]['dts'] ) ) {
257 if ( ! stristr( $recent_posts_published[ $i ]['dts'], '-' ) ) {
258 $recent_posts_published[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_posts_published[ $i ]['dts'] ) );
259 }
260 }
261
262 $name = wp_strip_all_tags( $recent_posts_published[ $i ]['website']->name );
263
264 ?>
265 <div class="item">
266 <div class="ui stackable grid">
267 <input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_published[ $i ]['id'] ); ?>"/>
268 <input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_published[ $i ]['website']->id ); ?>"/>
269 <div class="fourteen wide column middle aligned">
270 <div>
271 <a href="<?php echo esc_url( $recent_posts_published[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_posts_published[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_posts_published[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
272 <?php if ( ! $individual ) : ?>
273 <?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_posts_published[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
274 <?php endif; ?>
275 </div>
276 <span class="ui small text"><?php echo esc_html( $recent_posts_published[ $i ]['dts'] ); ?></span>
277 </div>
278 <div class="two wide column right aligned">
279 <div class="ui right pointing dropdown icon mini basic green button" style="z-index:999">
280 <i class="ellipsis horizontal icon"></i>
281 <div class="menu">
282 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-unpublish" href="#"><?php esc_html_e( 'Unpublish', 'mainwp' ); ?></a>
283 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo intval( $recent_posts_published[ $i ]['website']->id ); ?>&location=<?php echo esc_attr( base64_encode( 'post.php?action=editpost&post=' . $recent_posts_published[ $i ]['id'] . '&action=edit' ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions -- base64_encode used for http encoding compatible. ?>&_opennonce=<?php echo esc_html( wp_create_nonce( 'mainwp-admin-nonce' ) ); ?>" target="_blank"><?php esc_html_e( 'Edit', 'mainwp' ); ?></a>
284 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-trash" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
285 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="<?php echo esc_url( $recent_posts_published[ $i ]['website']->url ) . ( '/' !== substr( $recent_posts_published[ $i ]['website']->url, - 1 ) ? '/' : '' ) . '?p=' . esc_attr( $recent_posts_published[ $i ]['id'] ); ?>" target="_blank"><?php esc_html_e( 'View', 'mainwp' ); ?></a>
286 </div>
287 </div>
288 </div>
289 </div>
290 <div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
291 </div>
292 <?php } ?>
293 </div>
294 <?php
295 /**
296 * Action: mainwp_recent_posts_after_publised_list
297 *
298 * Fires after the list of recent published Posts.
299 *
300 * @param array $allPosts All posts data.
301 * @param int $recent_number Number of posts.
302 *
303 * @since 4.1
304 */
305 do_action( 'mainwp_recent_posts_after_publised_list', $allPosts, $recent_number );
306 ?>
307 </div>
308 <?php
309 }
310
311 /**
312 * Render all draft posts.
313 *
314 * @param array $allPosts All posts data.
315 * @param int $recent_number Number of posts.
316 * @param bool $individual Determins if it's individual site dashbaord.
317 *
318 * @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
319 * @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
320 * @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
321 * @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
322 */
323 public static function render_draft_posts( $allPosts, $recent_number, $individual ) {
324 $recent_posts_draft = MainWP_Utility::get_sub_array_having( $allPosts, 'status', 'draft' );
325 $recent_posts_draft = MainWP_Utility::sortmulti( $recent_posts_draft, 'dts', 'desc' );
326 $is_demo = MainWP_Demo_Handle::is_demo_mode();
327 ?>
328 <div class="recent_posts_draft ui tab" data-tab="draft">
329 <?php
330 /**
331 * Action: mainwp_recent_posts_before_draft_list
332 *
333 * Fires before the list of recent draft Posts.
334 *
335 * @param array $allPosts All posts data.
336 * @param int $recent_number Number of posts.
337 *
338 * @since 4.1
339 */
340 do_action( 'mainwp_recent_posts_before_draft_list', $allPosts, $recent_number );
341 if ( 0 === count( $recent_posts_draft ) ) {
342 MainWP_UI::render_empty_element_placeholder();
343 }
344 ?>
345 <div class="ui middle aligned divided selection list">
346 <?php
347 $_count = count( $recent_posts_draft );
348 for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
349 if ( ! isset( $recent_posts_draft[ $i ]['title'] ) || empty( $recent_posts_draft[ $i ]['title'] ) ) {
350 $recent_posts_draft[ $i ]['title'] = '(No Title)';
351 }
352 if ( isset( $recent_posts_draft[ $i ]['dts'] ) ) {
353 if ( ! stristr( $recent_posts_draft[ $i ]['dts'], '-' ) ) {
354 $recent_posts_draft[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_posts_draft[ $i ]['dts'] ) );
355 }
356 }
357 $name = wp_strip_all_tags( $recent_posts_draft[ $i ]['website']->name );
358 ?>
359 <div class="item">
360 <div class="ui stackable grid">
361 <input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_draft[ $i ]['id'] ); ?>"/>
362 <input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_draft[ $i ]['website']->id ); ?>"/>
363 <div class="fourteen wide column middle aligned">
364 <div>
365 <a href="<?php echo esc_url( $recent_posts_draft[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_posts_draft[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_posts_draft[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
366 <?php if ( ! $individual ) : ?>
367 <?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_posts_draft[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
368 <?php endif; ?>
369 </div>
370 <span class="ui small text"><?php echo esc_html( $recent_posts_draft[ $i ]['dts'] ); ?></span>
371 </div>
372 <div class="two wide column right aligned">
373 <div class="ui right pointing dropdown icon mini basic green button" style="z-index:999">
374 <i class="ellipsis horizontal icon"></i>
375 <div class="menu">
376 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-publish" href="#"><?php esc_html_e( 'Publish', 'mainwp' ); ?></a>
377 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo esc_attr( $recent_posts_draft[ $i ]['website']->id ); ?>&location=<?php echo esc_attr( base64_encode( 'post.php?action=editpost&post=' . $recent_posts_draft[ $i ]['id'] . '&action=edit' ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions -- base64_encode used for http encoding compatible. ?>&_opennonce=<?php echo esc_html( wp_create_nonce( 'mainwp-admin-nonce' ) ); ?>" target="_blank"><?php esc_html_e( 'Edit', 'mainwp' ); ?></a>
378 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-trash" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
379 </div>
380 </div>
381 </div>
382 </div>
383 <div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
384 </div>
385 <?php } ?>
386 </div>
387 <?php
388 /**
389 * Action: mainwp_recent_posts_after_draft_list
390 *
391 * Fires after the list of recent draft Posts.
392 *
393 * @param array $allPosts All posts data.
394 * @param int $recent_number Number of posts.
395 *
396 * @since 4.1
397 */
398 do_action( 'mainwp_recent_posts_after_draft_list', $allPosts, $recent_number );
399 ?>
400 </div>
401 <?php
402 }
403
404 /**
405 * Render all pending posts.
406 *
407 * @param array $allPosts All posts data.
408 * @param int $recent_number Number of posts.
409 * @param bool $individual Determins if it's individual site dashbaord.
410 *
411 * @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
412 * @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
413 * @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
414 * @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
415 */
416 public static function render_pending_posts( $allPosts, $recent_number, $individual ) {
417 $recent_posts_pending = MainWP_Utility::get_sub_array_having( $allPosts, 'status', 'pending' );
418 $recent_posts_pending = MainWP_Utility::sortmulti( $recent_posts_pending, 'dts', 'desc' );
419 $is_demo = MainWP_Demo_Handle::is_demo_mode();
420 ?>
421 <div class="recent_posts_pending ui bottom attached tab" data-tab="pending">
422 <?php
423 /**
424 * Action: mainwp_recent_posts_before_pending_list
425 *
426 * Fires before the list of recent pending Posts.
427 *
428 * @param array $allPosts All posts data.
429 * @param int $recent_number Number of posts.
430 *
431 * @since 4.1
432 */
433 do_action( 'mainwp_recent_posts_before_pending_list', $allPosts, $recent_number );
434 if ( 0 === count( $recent_posts_pending ) ) {
435 MainWP_UI::render_empty_element_placeholder();
436 }
437 ?>
438 <div class="ui middle aligned divided selection list">
439 <?php
440 $_count = count( $recent_posts_pending );
441 for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
442 if ( ! isset( $recent_posts_pending[ $i ]['title'] ) || empty( $recent_posts_pending[ $i ]['title'] ) ) {
443 $recent_posts_pending[ $i ]['title'] = '(No Title)';
444 }
445 if ( isset( $recent_posts_pending[ $i ]['dts'] ) ) {
446 if ( ! stristr( $recent_posts_pending[ $i ]['dts'], '-' ) ) {
447 $recent_posts_pending[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_posts_pending[ $i ]['dts'] ) );
448 }
449 }
450 $name = wp_strip_all_tags( $recent_posts_pending[ $i ]['website']->name );
451 ?>
452 <div class="item">
453 <div class="ui stackable grid">
454 <input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_pending[ $i ]['id'] ); ?>"/>
455 <input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_pending[ $i ]['website']->id ); ?>"/>
456 <div class="fourteen wide column middle aligned">
457 <div>
458 <a href="<?php echo esc_url( $recent_posts_pending[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_posts_pending[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_posts_pending[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
459 <?php if ( ! $individual ) : ?>
460 <?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_posts_pending[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
461 <?php endif; ?>
462 </div>
463 <span class="ui small text"><?php echo esc_html( $recent_posts_pending[ $i ]['dts'] ); ?></span>
464 </div>
465 <div class="two wide column right aligned">
466 <div class="ui right pointing dropdown icon mini basic green button" style="z-index:999">
467 <i class="ellipsis horizontal icon"></i>
468 <div class="menu">
469 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-publish" href="#"><?php esc_html_e( 'Publish', 'mainwp' ); ?></a>
470 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo esc_attr( $recent_posts_pending[ $i ]['website']->id ); ?>&location=<?php echo esc_attr( base64_encode( 'post.php?action=editpost&post=' . $recent_posts_pending[ $i ]['id'] . '&action=edit' ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions -- base64_encode used for http encoding compatible. ?>&_opennonce=<?php echo esc_html( wp_create_nonce( 'mainwp-admin-nonce' ) ); ?>" target="_blank"><?php esc_html_e( 'Edit', 'mainwp' ); ?></a>
471 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-trash" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
472 </div>
473 </div>
474 </div>
475 </div>
476 <div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
477 </div>
478 <?php } ?>
479 </div>
480 <?php
481 /**
482 * Action: mainwp_recent_posts_after_pending_list
483 *
484 * Fires after the list of recent pending Posts.
485 *
486 * @param array $allPosts All posts data.
487 * @param int $recent_number Number of posts.
488 *
489 * @since 4.1
490 */
491 do_action( 'mainwp_recent_posts_after_pending_list', $allPosts, $recent_number );
492 ?>
493 </div>
494 <?php
495 }
496
497 /**
498 * Render all future posts.
499 *
500 * @param array $allPosts All posts data.
501 * @param int $recent_number Number of posts.
502 * @param bool $individual Determins if it's individual site dashbaord .
503 *
504 * @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
505 * @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
506 * @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
507 * @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
508 */
509 public static function render_future_posts( $allPosts, $recent_number, $individual ) {
510 $recent_posts_future = MainWP_Utility::get_sub_array_having( $allPosts, 'status', 'future' );
511 $recent_posts_future = MainWP_Utility::sortmulti( $recent_posts_future, 'dts', 'desc' );
512 $is_demo = MainWP_Demo_Handle::is_demo_mode();
513 ?>
514 <div class="recent_posts_future ui tab" data-tab="future">
515 <?php
516 /**
517 * Action: mainwp_recent_posts_before_future_list
518 *
519 * Fires before the list of recent future Posts.
520 *
521 * @param array $allPosts All posts data.
522 * @param int $recent_number Number of posts.
523 *
524 * @since 4.1
525 */
526 do_action( 'mainwp_recent_posts_before_future_list', $allPosts, $recent_number );
527 if ( 0 === count( $recent_posts_future ) ) {
528 MainWP_UI::render_empty_element_placeholder();
529 }
530 ?>
531 <div class="ui middle aligned divided selection list">
532 <?php
533 $_count = count( $recent_posts_future );
534 for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
535 if ( ! isset( $recent_posts_future[ $i ]['title'] ) || empty( $recent_posts_future[ $i ]['title'] ) ) {
536 $recent_posts_future[ $i ]['title'] = '(No Title)';
537 }
538 if ( isset( $recent_posts_future[ $i ]['dts'] ) ) {
539 if ( ! stristr( $recent_posts_future[ $i ]['dts'], '-' ) ) {
540 $recent_posts_future[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_posts_future[ $i ]['dts'] ) );
541 }
542 }
543 $name = wp_strip_all_tags( $recent_posts_future[ $i ]['website']->name );
544 ?>
545 <div class="item">
546 <div class="ui stackable grid">
547 <input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_future[ $i ]['id'] ); ?>"/>
548 <input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_future[ $i ]['website']->id ); ?>"/>
549 <div class="fourteen wide column middle aligned">
550 <div>
551 <a href="<?php echo esc_url( $recent_posts_future[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_posts_future[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_posts_future[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
552 <?php if ( ! $individual ) : ?>
553 <?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_posts_future[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
554 <?php endif; ?>
555 </div>
556 <span class="ui small text"><?php echo esc_html( $recent_posts_future[ $i ]['dts'] ); ?></span>
557 </div>
558 <div class="two wide column right aligned">
559 <div class="ui right pointing dropdown icon mini basic green button" style="z-index:999">
560 <i class="ellipsis horizontal icon"></i>
561 <div class="menu">
562 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-publish" href="#"><?php esc_html_e( 'Publish', 'mainwp' ); ?></a>
563 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo esc_attr( $recent_posts_future[ $i ]['website']->id ); ?>&location=<?php echo esc_attr( base64_encode( 'post.php?action=editpost&post=' . $recent_posts_future[ $i ]['id'] . '&action=edit' ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions -- base64_encode used for http encoding compatible. ?>&_opennonce=<?php echo esc_html( wp_create_nonce( 'mainwp-admin-nonce' ) ); ?>" target="_blank"><?php esc_html_e( 'Edit', 'mainwp' ); ?></a>
564 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-trash" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
565 <a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo esc_attr( $recent_posts_future[ $i ]['website']->id ); ?>&openUrl=yes&location=<?php echo esc_attr( base64_encode( '?p=' . $recent_posts_future[ $i ]['id'] . '&preview=true' ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions -- base64_encode used for http encoding compatible. ?>&_opennonce=<?php echo esc_html( wp_create_nonce( 'mainwp-admin-nonce' ) ); ?>" target="_blank"><?php esc_html_e( 'Preview', 'mainwp' ); ?></a>
566 </div>
567 </div>
568 </div>
569 </div>
570 <div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
571 </div>
572 <?php } ?>
573 </div>
574 <?php
575 /**
576 * Action: mainwp_recent_posts_after_future_list
577 *
578 * Fires after the list of recent future Posts.
579 *
580 * @param array $allPosts All posts data.
581 * @param int $recent_number Number of posts.
582 *
583 * @since 4.1
584 */
585 do_action( 'mainwp_recent_posts_after_future_list', $allPosts, $recent_number );
586 ?>
587 </div>
588 <?php
589 }
590
591 /**
592 * Render all trashed posts.
593 *
594 * @param array $allPosts All posts data.
595 * @param int $recent_number Number of posts.
596 * @param bool $individual Determins if it's individual site dashbaord .
597 *
598 * @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
599 * @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
600 * @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
601 * @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
602 */
603 public static function render_trash_posts( $allPosts, $recent_number, $individual ) {
604 $recent_posts_trash = MainWP_Utility::get_sub_array_having( $allPosts, 'status', 'trash' );
605 $recent_posts_trash = MainWP_Utility::sortmulti( $recent_posts_trash, 'dts', 'desc' );
606 $is_demo = MainWP_Demo_Handle::is_demo_mode();
607 ?>
608 <div class="recent_posts_trash ui tab" data-tab="trash">
609 <?php
610 /**
611 * Action: mainwp_recent_posts_before_trash_list
612 *
613 * Fires before the list of recent trash Posts.
614 *
615 * @param array $allPosts All posts data.
616 * @param int $recent_number Number of posts.
617 *
618 * @since 4.1
619 */
620 do_action( 'mainwp_recent_posts_before_trash_list', $allPosts, $recent_number );
621 if ( 0 === count( $recent_posts_trash ) ) {
622 MainWP_UI::render_empty_element_placeholder();
623 }
624 ?>
625 <div class="ui middle aligned divided selection list">
626 <?php
627 $_count = count( $recent_posts_trash );
628 for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
629 if ( ! isset( $recent_posts_trash[ $i ]['title'] ) || empty( $recent_posts_trash[ $i ]['title'] ) ) {
630 $recent_posts_trash[ $i ]['title'] = '(No Title)';
631 }
632 if ( isset( $recent_posts_trash[ $i ]['dts'] ) ) {
633 if ( ! stristr( $recent_posts_trash[ $i ]['dts'], '-' ) ) {
634 $recent_posts_trash[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_posts_trash[ $i ]['dts'] ) );
635 }
636 }
637 $name = wp_strip_all_tags( $recent_posts_trash[ $i ]['website']->name );
638 ?>
639 <div class="item">
640 <div class="ui stackable grid">
641 <input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_trash[ $i ]['id'] ); ?>"/>
642 <input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_posts_trash[ $i ]['website']->id ); ?>"/>
643 <div class="fourteen wide column middle aligned">
644 <div>
645 <a href="<?php echo esc_url( $recent_posts_trash[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_posts_trash[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_posts_trash[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
646 <?php if ( ! $individual ) : ?>
647 <?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_posts_trash[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
648 <?php endif; ?>
649 </div>
650 <span class="ui small text"><?php echo esc_html( $recent_posts_trash[ $i ]['dts'] ); ?></span>
651 </div>
652 <div class="two wide column right aligned">
653 <div class="ui right pointing dropdown icon mini basic green button" style="z-index:999">
654 <i class="ellipsis horizontal icon"></i>
655 <div class="menu">
656 <a href="#" class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-restore" ><?php esc_html_e( 'Restore', 'mainwp' ); ?></a>
657 <a href="#" class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-delete"><?php esc_html_e( 'Delete permanently', 'mainwp' ); ?></a>
658 </div>
659 </div>
660 </div>
661 </div>
662 <div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
663 </div>
664 <?php } ?>
665 </div>
666 <?php
667 /**
668 * Action: mainwp_recent_posts_after_trash_list
669 *
670 * Fires after the list of recent trash Posts.
671 *
672 * @param array $allPosts All posts data.
673 * @param int $recent_number Number of posts.
674 *
675 * @since 4.1
676 */
677 do_action( 'mainwp_recent_posts_after_trash_list', $allPosts, $recent_number );
678 ?>
679 </div>
680 <?php
681 }
682
683 /**
684 * Method publish()
685 *
686 * Publish Post.
687 */
688 public static function publish() {
689 self::action( 'publish' );
690 die( wp_json_encode( array( 'result' => esc_html__( 'The post has been published.', 'mainwp' ) ) ) );
691 }
692
693 /**
694 * Method approve()
695 *
696 * Approve Post.
697 */
698 public static function approve() {
699 self::action( 'publish' );
700 die( wp_json_encode( array( 'result' => esc_html__( 'The post has been approved.', 'mainwp' ) ) ) );
701 }
702
703 /**
704 * Method unpublish()
705 *
706 * Unpublish Post.
707 */
708 public static function unpublish() {
709 self::action( 'unpublish' );
710 die( wp_json_encode( array( 'result' => esc_html__( 'The post has been unpublished.', 'mainwp' ) ) ) );
711 }
712
713 /**
714 * Method trash()
715 *
716 * Trash Post.
717 */
718 public static function trash() {
719 self::action( 'trash' );
720 die( wp_json_encode( array( 'result' => esc_html__( 'The post has been moved to the trash.', 'mainwp' ) ) ) );
721 }
722
723 /**
724 * Method delete()
725 *
726 * Delete Post.
727 */
728 public static function delete() {
729 self::action( 'delete' );
730 die( wp_json_encode( array( 'result' => esc_html__( 'The post has been permanently deleted.', 'mainwp' ) ) ) );
731 }
732
733 /**
734 * Method restore()
735 *
736 * Restore Post.
737 */
738 public static function restore() {
739 self::action( 'restore' );
740 die( wp_json_encode( array( 'result' => esc_html__( 'The post has been restored.', 'mainwp' ) ) ) );
741 }
742
743 /**
744 * Method action()
745 *
746 * Initiate try catch for chosen Action
747 *
748 * @param string $pAction Post Action.
749 * @param string $type Post type.
750 *
751 * @throws \Exception Error message.
752 *
753 * @uses \MainWP\Dashboard\MainWP_DB::get_website_by_id()
754 * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_error_message()
755 * @uses \MainWP\Dashboard\MainWP_Exception
756 * @uses \MainWP\Dashboard\MainWP_Connect::fetch_url_authed()
757 * @uses \MainWP\Dashboard\MainWP_System_Utility::can_edit_website()
758 */
759 public static function action( $pAction, $type = 'post' ) {
760 $postId = isset( $_POST['postId'] ) ? intval( $_POST['postId'] ) : false; // phpcs:ignore WordPress.Security.NonceVerification.Recommended,WordPress.Security.NonceVerification.Missing
761 $websiteId = isset( $_POST['websiteId'] ) ? intval( $_POST['websiteId'] ) : false; // phpcs:ignore WordPress.Security.NonceVerification.Recommended,WordPress.Security.NonceVerification.Missing
762
763 if ( empty( $postId ) || empty( $websiteId ) ) {
764 die( wp_json_encode( array( 'error' => 'Post ID or site ID not found. Please, reload the page and try again.' ) ) );
765 }
766
767 $website = MainWP_DB::instance()->get_website_by_id( $websiteId );
768 if ( ! MainWP_System_Utility::can_edit_website( $website ) ) {
769 die( wp_json_encode( array( 'error' => 'You can not edit this website!' ) ) );
770 }
771
772 if ( MainWP_System_Utility::is_suspended_site( $website ) ) {
773 die(
774 wp_json_encode(
775 array(
776 'error' => esc_html__( 'Suspended site.', 'mainwp' ),
777 'errorCode' => 'SUSPENDED_SITE',
778 )
779 )
780 );
781 }
782
783 /**
784 * Action: mainwp_before_post_action
785 *
786 * Fires before post/page publish/unpublish/trash/delete/restore actions.
787 *
788 * @since 4.1
789 */
790 do_action( 'mainwp_before_post_action', $type, $pAction, $postId, $website );
791 try {
792 $information = MainWP_Connect::fetch_url_authed(
793 $website,
794 'post_action',
795 array(
796 'action' => $pAction,
797 'id' => $postId,
798 )
799 );
800
801 } catch ( MainWP_Exception $e ) {
802 $information = array( 'error' => MainWP_Error_Helper::get_error_message( $e ) );
803
804 }
805
806 /**
807 * Action: mainwp_after_post_action
808 * Fires after post/page publish/unpublish/trash/delete/restore actions.
809 *
810 * @since 4.1
811 */
812 do_action( 'mainwp_after_post_action', $information, $type, $pAction, $postId, $website );
813
814 mainwp_get_actions_handler_instance()->do_action_mainwp_post_action( $website, $pAction, $information, $postId, $type );
815
816 if ( is_array( $information ) && isset( $information['error'] ) ) {
817 die( wp_json_encode( $information ) );
818 } elseif ( ! isset( $information['status'] ) || ( 'SUCCESS' !== $information['status'] ) ) {
819 die( wp_json_encode( array( 'error' => 'Unexpected error!' ) ) );
820 }
821 }
822 }
823