__( 'popular_post', 'top-10' ), // Singular name of the listed records. 'plural' => __( 'popular_posts', 'top-10' ), // plural name of the listed records. ) ); $this->all_post_type = array( 'all' => __( 'All post types', 'top-10' ), ); } /** * Retrieve the Top 10 posts * * @param int $per_page Posts per page. * @param int $page_number Page number. * @param array $args Array of arguments. * * @return array Array of popular posts */ public function get_popular_posts( $per_page = 20, $page_number = 1, $args = null ) { global $wpdb; $blog_id = get_current_blog_id(); $from_date = isset( $args['post-date-filter-from'] ) ? $args['post-date-filter-from'] : current_time( 'd M Y' ); $from_date = gmdate( 'Y-m-d', strtotime( $from_date ) ); $to_date = isset( $args['post-date-filter-to'] ) ? $args['post-date-filter-to'] : current_time( 'd M Y' ); $to_date = gmdate( 'Y-m-d', strtotime( $to_date ) ); /* Start creating the SQL */ $table_name_daily = $wpdb->base_prefix . 'top_ten_daily AS ttd'; $table_name = $wpdb->base_prefix . 'top_ten AS ttt'; // Fields to return. $fields[] = 'ID'; $fields[] = 'post_title as title'; $fields[] = 'post_type'; $fields[] = 'post_date'; $fields[] = 'post_author'; $fields[] = 'ttt.cntaccess as total_count'; $fields[] = 'SUM(ttd.cntaccess) as daily_count'; $fields = implode( ', ', $fields ); // Create the JOIN clause. $join = " INNER JOIN {$wpdb->posts} ON ttt.postnumber=ID "; $join .= $wpdb->prepare( " LEFT JOIN ( SELECT * FROM {$table_name_daily} " . // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared 'WHERE DATE(ttd.dp_date) >= DATE(%s) AND DATE(ttd.dp_date) <= DATE(%s) ) AS ttd ON ttt.postnumber=ttd.postnumber ', $from_date, $to_date ); // Create the base WHERE clause. $where = $wpdb->prepare( ' AND ttt.blog_id = %d ', $blog_id ); // Posts need to be from the current blog only. $where .= " AND ($wpdb->posts.post_status = 'publish' OR $wpdb->posts.post_status = 'inherit') "; // Show published posts and attachments. $where .= " AND ($wpdb->posts.post_type <> 'revision' ) "; // No revisions. /* If search argument is set, do a search for it. */ if ( ! empty( $args['search'] ) ) { $where .= $wpdb->prepare( " AND $wpdb->posts.post_title LIKE %s ", '%' . $wpdb->esc_like( $args['search'] ) . '%' ); } /* If post filter argument is set, do a search for it. */ if ( isset( $args['post-type-filter'] ) && $this->all_post_type['all'] !== $args['post-type-filter'] ) { $where .= $wpdb->prepare( " AND $wpdb->posts.post_type = %s ", $args['post-type-filter'] ); } // Create the base GROUP BY clause. $groupby = ' ID '; // Create the base ORDER BY clause. $orderby = ' total_count DESC '; if ( ! empty( $_REQUEST['orderby'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended $orderby = sanitize_text_field( wp_unslash( $_REQUEST['orderby'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended if ( ! in_array( $orderby, array( 'title', 'daily_count', 'total_count' ) ) ) { //phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict $orderby = ' total_count '; } if ( ! empty( $_REQUEST['order'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended $order = sanitize_text_field( wp_unslash( $_REQUEST['order'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended if ( in_array( $order, array( 'asc', 'ASC', 'desc', 'DESC' ) ) ) { //phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict $orderby .= ' ' . $order; } else { $orderby .= ' DESC'; } } } // Create the base LIMITS clause. $limits = $wpdb->prepare( ' LIMIT %d, %d ', ( $page_number - 1 ) * $per_page, $per_page ); if ( ! empty( $groupby ) ) { $groupby = " GROUP BY {$groupby} "; } if ( ! empty( $orderby ) ) { $orderby = " ORDER BY {$orderby} "; } $sql = "SELECT $fields FROM {$table_name} $join WHERE 1=1 $where $groupby $orderby $limits"; $result = $wpdb->get_results( $sql, 'ARRAY_A' ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared return $result; } /** * Delete the post count for this post. * * @param int $id post ID. */ public static function delete_post_count( $id ) { global $wpdb; $wpdb->delete( // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching "{$wpdb->base_prefix}top_ten", array( 'postnumber' => $id, ), array( '%d' ) ); $wpdb->delete( // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching "{$wpdb->base_prefix}top_ten_daily", array( 'postnumber' => $id, ), array( '%d' ) ); } /** * Returns the count of records in the database. * * @param string $args Array of arguments. * @return null|string null|string */ public function record_count( $args = null ) { global $wpdb; $sql = $wpdb->prepare( " SELECT COUNT(*) FROM {$wpdb->base_prefix}top_ten as ttt INNER JOIN {$wpdb->posts} ON ttt.postnumber=ID WHERE blog_id=%d AND ($wpdb->posts.post_status = 'publish' OR $wpdb->posts.post_status = 'inherit') ", get_current_blog_id() ); if ( isset( $args['search'] ) ) { $sql .= $wpdb->prepare( " AND $wpdb->posts.post_title LIKE %s ", '%' . $wpdb->esc_like( $args['search'] ) . '%' ); } if ( isset( $args['post-type-filter'] ) && $this->all_post_type['all'] !== $args['post-type-filter'] ) { $sql .= $wpdb->prepare( " AND $wpdb->posts.post_type = %s ", $args['post-type-filter'] ); } return $wpdb->get_var( $sql ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared } /** * Text displayed when no post data is available */ public function no_items() { esc_html_e( 'No popular posts available.', 'top-10' ); } /** * Render a column when no column specific method exist. * * @param array $item Current item. * @param string $column_name Column name. * * @return mixed */ public function column_default( $item, $column_name ) { switch ( $column_name ) { case 'post_type': return $item[ $column_name ]; case 'daily_count': return tptn_number_format_i18n( absint( $item[ $column_name ] ) ); default: // Show the whole array for troubleshooting purposes. return print_r( $item, true ); //phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r } } /** * Render the checkbox column. * * @param array $item Current item. * @return string */ public function column_cb( $item ) { return sprintf( '', 'bulk-delete', $item['ID'] ); } /** * Render the title column. * * @param array $item Current item. * @return string */ public function column_title( $item ) { $delete_nonce = wp_create_nonce( 'tptn_delete_entry' ); $page = isset( $_REQUEST['page'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['page'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended $actions = array( 'view' => sprintf( '' . __( 'View', 'top-10' ) . '', get_permalink( $item['ID'] ) ), 'edit' => sprintf( '' . __( 'Edit', 'top-10' ) . '', get_edit_post_link( $item['ID'] ) ), 'delete' => sprintf( '' . __( 'Delete', 'top-10' ) . '', esc_attr( $page ), 'delete', absint( $item['ID'] ), $delete_nonce ), ); // Return the title contents. return sprintf( '%1$s (id:%2$s)%3$s', $item['title'], $item['ID'], $this->row_actions( $actions ), get_edit_post_link( $item['ID'] ) ); } /** * Handles the post date column output. * * @param array $item Current item. * @return void */ public function column_date( $item ) { $m_time = $item['post_date']; $time = get_post_time( 'G', true, $item['ID'] ); $time_diff = time() - $time; if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) { /* translators: 1. Human time difference. */ $h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) ); } else { $h_time = mysql2date( __( 'Y/m/d' ), $m_time ); } echo '' . esc_attr( $h_time ) . ''; } /** * Handles the post author column output. * * @param array $item Current item. * @return void */ public function column_author( $item ) { $author_info = get_userdata( $item['post_author'] ); $author_name = ( false === $author_info ) ? '' : ucwords( trim( stripslashes( $author_info->display_name ) ) ); printf( '%s', esc_url( add_query_arg( array( 'post_type' => $item['post_type'], 'author' => ( false === $author_info ) ? 0 : $author_info->ID, ), 'edit.php' ) ), esc_html( $author_name ) ); } /** * Render the Total Count column. * * @param array $item Current item. * @return string */ public function column_total_count( $item ) { return sprintf( '