38217-vm/wp-content/plugins/mainwp/widgets/widget-mainwp-recent-pages.php
2026-02-05 17:08:59 +03:00

671 lines
39 KiB
PHP

<?php
/**
* MainWP Recent Pages Widget
*
* Displays the Child Sites most recent published draft, pending, trash & future Pages.
*
* @package MainWP/Widget_Mainwp_Recent_Pages
*/
namespace MainWP\Dashboard;
/**
* Class MainWP_Recent_Pages
*
* Displays the Child Sites most recent published draft, pending, trash & future Pages.
*/
class MainWP_Recent_Pages { // phpcs:ignore Generic.Classes.OpeningBraceSameLine.ContentAfterBrace -- NOSONAR.
/**
* Method get_class_name()
*
* @return string __CLASS__ Class Name
*/
public static function get_class_name() {
return __CLASS__;
}
/**
* Method render()
*
* Fire off Method render_sites().
*/
public static function render() {
static::render_sites();
}
/**
* Method render_sites()
*
* Build the resent pages list.
*
* @uses \MainWP\Dashboard\MainWP_DB::query()
* @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user()
* @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
* @uses \MainWP\Dashboard\MainWP_DB::free_result()
* @uses \MainWP\Dashboard\MainWP_System_Utility::get_current_wpid()
*/
public static function render_sites() { // phpcs:ignore -- NOSONAR - complex.
/** This filter is documented in /widgets/widget-mainwp-recent-posts.php */
$recent_number = apply_filters( 'mainwp_recent_posts_pages_number', 5 );
$allPages = array();
$current_wpid = MainWP_System_Utility::get_current_wpid();
if ( isset( $_GET['client_id'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
$data_fields = MainWP_System_Utility::get_default_map_site_fields();
$data_fields[] = 'recent_pages';
$individual = false;
$client_id = isset( $_GET['client_id'] ) ? intval( $_GET['client_id'] ) : 0; // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
$websites = MainWP_DB_Client::instance()->get_websites_by_client_ids( $client_id, array( 'select_data' => $data_fields ) );
if ( $websites ) {
foreach ( $websites as $website ) {
if ( empty( $website->recent_pages ) ) {
continue;
}
$pages = json_decode( $website->recent_pages, 1 );
if ( empty( $pages ) ) {
continue;
}
foreach ( $pages as $page ) {
$page['website'] = (object) array(
'id' => $website->id,
'url' => $website->url,
'name' => $website->name,
);
$allPages[] = $page;
}
}
}
} else {
if ( $current_wpid ) {
$sql = MainWP_DB::instance()->get_sql_website_by_id( $current_wpid );
$individual = true;
} else {
$sql = MainWP_DB::instance()->get_sql_websites_for_current_user();
$individual = false;
}
$websites = MainWP_DB::instance()->query( $sql );
if ( $websites ) {
while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) {
if ( empty( $website->recent_pages ) ) {
continue;
}
$pages = json_decode( $website->recent_pages, 1 );
if ( empty( $pages ) ) {
continue;
}
foreach ( $pages as $page ) {
$page['website'] = (object) array(
'id' => $website->id,
'url' => $website->url,
'name' => $website->name,
);
$allPages[] = $page;
}
}
MainWP_DB::free_result( $websites );
}
}
static::render_top_grid();
/**
* Action: mainwp_recent_pages_widget_top
*
* Fires at the top of the Recent Pages widget.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_widget_top' );
?>
<div class="mainwp-scrolly-overflow">
<?php
static::render_published_posts( $allPages, $recent_number, $individual );
static::render_draft_posts( $allPages, $recent_number, $individual );
static::render_pending_posts( $allPages, $recent_number, $individual );
static::render_future_posts( $allPages, $recent_number, $individual );
static::render_trash_posts( $allPages, $recent_number, $individual );
?>
</div>
<?php
/**
* Action: mainwp_recent_pages_after_lists
*
* Fires after the recent pages lists, before the bottom actions section.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_after_lists' );
?>
<div class="ui stackable grid mainwp-widget-footer">
<div class="eight wide left aligned middle aligned column">
<a href="<?php echo esc_url( admin_url( 'admin.php?page=PageBulkAdd' ) ); ?>" class="ui mini basic button"><?php esc_html_e( 'Create a New Page', 'mainwp' ); ?></a>
</div>
<div class="eight wide right aligned middle aligned column">
<a href="<?php echo esc_url( admin_url( 'admin.php?page=PageBulkManage' ) ); ?>" class="ui mini basic button"><?php esc_html_e( 'Manage Pages', 'mainwp' ); ?></a>
</div>
</div>
<?php
/**
* Action: mainwp_recent_pages_widget_bottom
*
* Fires at the bottom of the Recent Pages widget.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_widget_bottom' );
}
/**
* Render MainWP Recent Paged Widget Header
*/
public static function render_top_grid() {
?>
<div class="ui grid mainwp-widget-header">
<div class="twelve wide column">
<h2 class="ui header handle-drag">
<?php
/**
* Filter: mainwp_recent_pages_widget_title
*
* Filters the recent pages widget title text.
*
* @since 4.1
*/
echo esc_html( apply_filters( 'mainwp_recent_pages_widget_title', esc_html__( 'Recent Pages', 'mainwp' ) ) );
?>
<?php if ( isset( $_GET['client_id'] ) ) : // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized ?>
<div class="sub header"><?php esc_html_e( 'The most recent pages from the Client websites', 'mainwp' ); ?></div>
<?php else : ?>
<div class="sub header"><?php esc_html_e( 'The most recent pages from your websites', 'mainwp' ); ?></div>
<?php endif; ?>
</h2>
</div>
<div class="four wide column right aligned">
<div class="ui dropdown right tiny pointing mainwp-dropdown-tab">
<i class="vertical ellipsis icon"></i>
<div class="menu">
<a class="item recent_posts_published_lnk" data-tab="page-published" data-value="published" title="<?php esc_attr_e( 'Published', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Published', 'mainwp' ); ?></a>
<a class="item recent_posts_draft_lnk" data-tab="page-draft" data-value="draft" title="<?php esc_attr_e( 'Draft', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Draft', 'mainwp' ); ?></a>
<a class="item recent_posts_pending_lnk" data-tab="page-pending" data-value="pending" title="<?php esc_attr_e( 'Pending', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Pending', 'mainwp' ); ?></a>
<a class="item recent_posts_future_lnk" data-tab="page-future" data-value="future" title="<?php esc_attr_e( 'Scheduled', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Scheduled', 'mainwp' ); ?></a>
<a class="item recent_posts_trash_lnk" data-tab="page-trash" data-value="trash" title="<?php esc_attr_e( 'Trash', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
</div>
</div>
</div>
</div>
<?php
}
/**
* Render Published Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of posts.
* @param bool $individual Determins if it's individual site dashboard.
*
* @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
* @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
* @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
* @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
*/
public static function render_published_posts( $allPages, $recent_number, $individual ) { // phpcs:ignore -- NOSONAR - complex.
$recent_pages_published = MainWP_Utility::get_sub_array_having( $allPages, 'status', 'publish' );
$recent_pages_published = MainWP_Utility::sortmulti( $recent_pages_published, 'dts', 'desc' );
$is_demo = MainWP_Demo_Handle::is_demo_mode();
?>
<div class="recent_posts_published ui tab active" data-tab="page-published">
<?php
/**
* Action: mainwp_recent_pages_before_publised_list
*
* Fires before the list of recent published Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of posts.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_before_publised_list', $allPages, $recent_number );
if ( empty( $recent_pages_published ) ) :
MainWP_UI::render_empty_element_placeholder();
endif;
?>
<div class="ui middle aligned divided list">
<?php
$_count = count( $recent_pages_published );
for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
if ( ! isset( $recent_pages_published[ $i ]['title'] ) || empty( $recent_pages_published[ $i ]['title'] ) ) {
$recent_pages_published[ $i ]['title'] = '(No Title)';
}
if ( isset( $recent_pages_published[ $i ]['dts'] ) && ! stristr( $recent_pages_published[ $i ]['dts'], '-' ) ) {
$recent_pages_published[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_pages_published[ $i ]['dts'] ) );
}
$name = wp_strip_all_tags( $recent_pages_published[ $i ]['website']->name );
?>
<div class="item">
<div class="ui stackable grid">
<input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_published[ $i ]['id'] ); ?>"/>
<input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_published[ $i ]['website']->id ); ?>"/>
<div class="fourteen wide column middle aligned">
<div>
<a href="<?php echo esc_url( $recent_pages_published[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_pages_published[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_pages_published[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
<?php if ( ! $individual ) : ?>
<?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_pages_published[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
<?php endif; ?>
</div>
<span class="ui small text"><?php echo esc_html( $recent_pages_published[ $i ]['dts'] ); ?></span>
</div>
<div class="two wide column right aligned">
<div class="ui right pointing dropdown" style="z-index:999">
<i class="ellipsis vertical icon"></i>
<div class="menu">
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-unpublish" href="#"><?php esc_html_e( 'Unpublish', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo esc_attr( $recent_pages_published[ $i ]['website']->id ); ?>&location=<?php echo esc_html( base64_encode( 'post.php?action=editpost&post=' . esc_attr( $recent_pages_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' ) ); ?>" title="Edit this post" target="_blank"><?php esc_html_e( 'Edit', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-trash" href="#" ><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="<?php echo esc_url( $recent_pages_published[ $i ]['website']->url ) . ( substr( $recent_pages_published[ $i ]['website']->url, - 1 ) !== '/' ? '/' : '' ) . '?p=' . esc_attr( $recent_pages_published[ $i ]['id'] ); ?>" target="_blank" class="mainwp-may-hide-referrer" title="View '<?php echo esc_attr( $recent_pages_published[ $i ]['title'] ); ?>'" rel="permalink"><?php esc_html_e( 'View', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-viewall" href="admin.php?page=PageBulkManage" ><?php esc_html_e( 'View all', 'mainwp' ); ?></a>
</div>
</div>
</div>
</div>
<div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
</div>
<?php } ?>
</div>
<?php
/**
* Action: mainwp_recent_pages_after_publised_list
*
* Fires after the list of recent published Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_after_publised_list', $allPages, $recent_number );
?>
</div>
<?php
}
/**
* Render all draft pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
* @param bool $individual Determins if it's individual site dashboard.
*
* @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
* @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
* @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
* @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
*/
public static function render_draft_posts( $allPages, $recent_number, $individual ) { // phpcs:ignore -- NOSONAR - complex.
$recent_pages_draft = MainWP_Utility::get_sub_array_having( $allPages, 'status', 'draft' );
$recent_pages_draft = MainWP_Utility::sortmulti( $recent_pages_draft, 'dts', 'desc' );
$is_demo = MainWP_Demo_Handle::is_demo_mode();
?>
<div class="recent_posts_draft ui tab" data-tab="page-draft">
<?php
/**
* Action: mainwp_recent_pages_before_draft_list
*
* Fires before the list of recent draft Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_before_draft_list', $allPages, $recent_number );
if ( empty( $recent_pages_draft ) ) {
MainWP_UI::render_empty_element_placeholder();
}
?>
<div class="ui middle aligned divided list">
<?php
$_count = count( $recent_pages_draft );
for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
if ( ! isset( $recent_pages_draft[ $i ]['title'] ) || empty( $recent_pages_draft[ $i ]['title'] ) ) {
$recent_pages_draft[ $i ]['title'] = '(No Title)';
}
if ( isset( $recent_pages_draft[ $i ]['dts'] ) && ! stristr( $recent_pages_draft[ $i ]['dts'], '-' ) ) {
$recent_pages_draft[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_pages_draft[ $i ]['dts'] ) );
}
$name = wp_strip_all_tags( $recent_pages_draft[ $i ]['website']->name );
?>
<div class="item">
<div class="ui stackable grid">
<input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_draft[ $i ]['id'] ); ?>"/>
<input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_draft[ $i ]['website']->id ); ?>"/>
<div class="fourteen wide column middle aligned">
<div>
<a href="<?php echo esc_url( $recent_pages_draft[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_pages_draft[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_pages_draft[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
<?php if ( ! $individual ) : ?>
<?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_pages_draft[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
<?php endif; ?>
</div>
<span class="ui small text"><?php echo esc_html( $recent_pages_draft[ $i ]['dts'] ); ?></span>
</div>
<div class="two wide column right aligned">
<div class="ui right pointing dropdown" style="z-index:999">
<i class="ellipsis vertical icon"></i>
<div class="menu">
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-publish" href="#"><?php esc_html_e( 'Publish', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo intval( $recent_pages_draft[ $i ]['website']->id ); ?>&location=<?php echo esc_html( base64_encode( 'post.php?action=editpost&post=' . $recent_pages_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' ) ); ?>" title="Edit this post" target="_blank"><?php esc_html_e( 'Edit', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-trash" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-viewall" href="admin.php?page=PostBulkManage"><?php esc_html_e( 'View all', 'mainwp' ); ?></a>
</div>
</div>
</div>
</div>
<div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
</div>
<?php } ?>
</div>
<?php
/**
* Action: mainwp_recent_pages_after_draft_list
*
* Fires after the list of recent draft Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_after_draft_list', $allPages, $recent_number );
?>
</div>
<?php
}
/**
* Render all pending pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
* @param bool $individual Determins if it's individual site dashboard.
*
* @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
* @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
* @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
*/
public static function render_pending_posts( $allPages, $recent_number, $individual ) { // phpcs:ignore -- NOSONAR - complex.
$recent_pages_pending = MainWP_Utility::get_sub_array_having( $allPages, 'status', 'pending' );
$recent_pages_pending = MainWP_Utility::sortmulti( $recent_pages_pending, 'dts', 'desc' );
$is_demo = MainWP_Demo_Handle::is_demo_mode();
?>
<div class="recent_posts_pending ui bottom attached tab" data-tab="page-pending">
<?php
/**
* Action: mainwp_recent_pages_before_pending_list
*
* Fires before the list of recent pending pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_before_pending_list', $allPages, $recent_number );
if ( empty( $recent_pages_pending ) ) {
MainWP_UI::render_empty_element_placeholder();
}
?>
<div class="ui middle aligned divided list">
<?php
$_count = count( $recent_pages_pending );
for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
if ( ! isset( $recent_pages_pending[ $i ]['title'] ) || empty( $recent_pages_pending[ $i ]['title'] ) ) {
$recent_pages_pending[ $i ]['title'] = '(No Title)';
}
if ( isset( $recent_pages_pending[ $i ]['dts'] ) && ! stristr( $recent_pages_pending[ $i ]['dts'], '-' ) ) {
$recent_pages_pending[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_pages_pending[ $i ]['dts'] ) );
}
$name = wp_strip_all_tags( $recent_pages_pending[ $i ]['website']->name );
?>
<div class="item">
<div class="ui stackable grid">
<input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_pending[ $i ]['id'] ); ?>"/>
<input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_pending[ $i ]['website']->id ); ?>"/>
<div class="fourteen wide column middle aligned">
<div>
<a href="<?php echo esc_url( $recent_pages_pending[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_pages_pending[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_pages_pending[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
<?php if ( ! $individual ) : ?>
<?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_pages_pending[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
<?php endif; ?>
</div>
<span class="ui small text"><?php echo esc_html( $recent_pages_pending[ $i ]['dts'] ); ?></span>
</div>
<div class="two wide column right aligned">
<div class="ui right pointing dropdown" style="z-index:999">
<i class="ellipsis vertical icon"></i>
<div class="menu">
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-publish" href="#"><?php esc_html_e( 'Publish', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo intval( $recent_pages_pending[ $i ]['website']->id ); ?>&location=<?php echo esc_html( base64_encode( 'post.php?action=editpost&post=' . $recent_pages_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' ) ); ?>" title="Edit this post" target="_blank"><?php esc_html_e( 'Edit', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-trash" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-viewall" href="admin.php?page=PostBulkManage"><?php esc_html_e( 'View all', 'mainwp' ); ?></a>
</div>
</div>
</div>
</div>
<div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
</div>
<?php } ?>
</div>
<?php
/**
* Action: mainwp_recent_pages_after_pending_list
*
* Fires after the list of recent pending pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_after_pending_list', $allPages, $recent_number );
?>
</div>
<?php
}
/**
* Render all future pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
* @param bool $individual Determins if it's individual site dashboard .
*
* @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
* @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
* @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
* @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
*/
public static function render_future_posts( $allPages, $recent_number, $individual ) { // phpcs:ignore -- NOSONAR - complex.
$recent_pages_future = MainWP_Utility::get_sub_array_having( $allPages, 'status', 'future' );
$recent_pages_future = MainWP_Utility::sortmulti( $recent_pages_future, 'dts', 'desc' );
$is_demo = MainWP_Demo_Handle::is_demo_mode();
?>
<div class="recent_posts_future ui tab" data-tab="page-future">
<?php
/**
* Action: mainwp_recent_pages_before_future_list
*
* Fires before the list of recent future Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_before_future_list', $allPages, $recent_number );
if ( empty( $recent_pages_future ) ) {
MainWP_UI::render_empty_element_placeholder();
}
?>
<div class="ui middle aligned divided list">
<?php
$_count = count( $recent_pages_future );
for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
if ( ! isset( $recent_pages_future[ $i ]['title'] ) || empty( $recent_pages_future[ $i ]['title'] ) ) {
$recent_pages_future[ $i ]['title'] = '(No Title)';
}
if ( isset( $recent_pages_future[ $i ]['dts'] ) && ! stristr( $recent_pages_future[ $i ]['dts'], '-' ) ) {
$recent_pages_future[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_pages_future[ $i ]['dts'] ) );
}
$name = wp_strip_all_tags( $recent_pages_future[ $i ]['website']->name );
?>
<div class="item">
<div class="ui stackable grid">
<input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_future[ $i ]['id'] ); ?>"/>
<input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_future[ $i ]['website']->id ); ?>"/>
<div class="fourteen wide column middle aligned">
<div>
<a href="<?php echo esc_url( $recent_pages_future[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_pages_future[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_pages_future[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
<?php if ( ! $individual ) : ?>
<?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_pages_future[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
<?php endif; ?>
</div>
<span class="ui small text"><?php echo esc_html( $recent_pages_future[ $i ]['dts'] ); ?></span>
</div>
<div class="two wide column right aligned">
<div class="ui right pointing dropdown" style="z-index:999">
<i class="ellipsis vertical icon"></i>
<div class="menu">
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-publish" href="#"><?php esc_html_e( 'Publish', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo esc_attr( $recent_pages_future[ $i ]['website']->id ); ?>&location=<?php echo esc_html( base64_encode( 'post.php?action=editpost&post=' . $recent_pages_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' ) ); ?>" title="Edit this post" target="_blank"><?php esc_html_e( 'Edit', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-trash" href="#"><?php esc_html_e( 'Trash', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item" href="admin.php?page=SiteOpen&newWindow=yes&websiteid=<?php echo esc_attr( $recent_pages_future[ $i ]['website']->id ); ?>&newWindow=yes&openUrl=yes&location=<?php echo esc_html( base64_encode( '?p=' . $recent_pages_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" title="Preview '< ? php echo esc_attr( $recent_pages_future[ $i ]['title'] ); ?>'" rel="permalink"><?php esc_html_e( 'Preview', 'mainwp' ); ?></a>
<a class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-viewall" href="admin.php?page=PostBulkManage"><?php esc_html_e( 'View all', 'mainwp' ); ?></a>
</div>
</div>
</div>
</div>
<div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
</div>
<?php } ?>
</div>
<?php
/**
* Action: mainwp_recent_pages_after_future_list
*
* Fires after the list of recent future Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_after_future_list', $allPages, $recent_number );
?>
</div>
<?php
}
/**
* Render all trashed pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
* @param bool $individual Determins if it's individual site dashboard.
*
* @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
* @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
* @uses \MainWP\Dashboard\MainWP_Utility::format_timestamp()
* @uses \MainWP\Dashboard\MainWP_Utility::get_timestamp()
*/
public static function render_trash_posts( $allPages, $recent_number, $individual ) { // phpcs:ignore -- NOSONAR - complex.
$recent_pages_trash = MainWP_Utility::get_sub_array_having( $allPages, 'status', 'trash' );
$recent_pages_trash = MainWP_Utility::sortmulti( $recent_pages_trash, 'dts', 'desc' );
$is_demo = MainWP_Demo_Handle::is_demo_mode();
?>
<div class="recent_posts_trash ui tab" data-tab="page-trash">
<?php
/**
* Action: mainwp_recent_pages_before_trash_list
*
* Fires before the list of recent trash Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_before_trash_list', $allPages, $recent_number );
if ( empty( $recent_pages_trash ) ) {
MainWP_UI::render_empty_element_placeholder();
}
?>
<div class="ui middle aligned divided list">
<?php
$_count = count( $recent_pages_trash );
for ( $i = 0; $i < $_count && $i < $recent_number; $i++ ) {
if ( ! isset( $recent_pages_trash[ $i ]['title'] ) || empty( $recent_pages_trash[ $i ]['title'] ) ) {
$recent_pages_trash[ $i ]['title'] = '(No Title)';
}
if ( isset( $recent_pages_trash[ $i ]['dts'] ) && ! stristr( $recent_pages_trash[ $i ]['dts'], '-' ) ) {
$recent_pages_trash[ $i ]['dts'] = MainWP_Utility::format_timestamp( MainWP_Utility::get_timestamp( $recent_pages_trash[ $i ]['dts'] ) );
}
$name = wp_strip_all_tags( $recent_pages_trash[ $i ]['website']->name );
?>
<div class="item">
<div class="ui stackable grid">
<input class="postId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_trash[ $i ]['id'] ); ?>"/>
<input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $recent_pages_trash[ $i ]['website']->id ); ?>"/>
<div class="fourteen wide column middle aligned">
<div>
<a href="<?php echo esc_url( $recent_pages_trash[ $i ]['website']->url ); ?>?p=<?php echo esc_attr( $recent_pages_trash[ $i ]['id'] ); ?>" class="mainwp-may-hide-referrer" target="_blank"><?php echo esc_html( htmlentities( $recent_pages_trash[ $i ]['title'], ENT_COMPAT | ENT_HTML401, 'UTF-8' ) ); ?></a>
<?php if ( ! $individual ) : ?>
<?php esc_html_e( 'on', 'mainwp' ); ?> <a href="<?php echo esc_url( $recent_pages_trash[ $i ]['website']->url ); ?>" target="_blank"><?php echo $name; // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
<?php endif; ?>
</div>
<span class="ui small text"><?php echo esc_html( $recent_pages_trash[ $i ]['dts'] ); ?></span>
</div>
<div class="two wide column right aligned">
<div class="ui right pointing dropdown" style="z-index:999">
<i class="ellipsis vertical icon"></i>
<div class="menu">
<a href="#" class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-restore"><?php esc_html_e( 'Restore', 'mainwp' ); ?></a>
<a href="#" class="<?php echo $is_demo ? 'disabled' : ''; ?> item mainwp-post-delete"><?php esc_html_e( 'Delete permanently', 'mainwp' ); ?></a>
</div>
</div>
</div>
</div>
<div class="mainwp-row-actions-working"><i class="notched circle loading icon"></i><?php esc_html_e( 'Please wait...', 'mainwp' ); ?></div>
</div>
<?php } ?>
</div>
<?php
/**
* Action: mainwp_recent_pages_after_trash_list
*
* Fires after the list of recent trash Pages.
*
* @param array $allPages All pages data.
* @param int $recent_number Number of pages.
*
* @since 4.1
*/
do_action( 'mainwp_recent_pages_after_trash_list', $allPages, $recent_number );
?>
</div>
<?php
}
}