PATH:
home
/
shotlining
/
public_html
/
wp-content
/
plugins
/
w3-total-cache
<?php /** * File: Util_PageUrls.php * * @package W3TC */ namespace W3TC; /** * Class Util_PageUrls * * phpcs:disable PSR2.Methods.MethodDeclaration.Underscore * phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged */ class Util_PageUrls { /** * Returns full urls for frontpage including older pages * * @param int $limit_post_pages Limit for posts/pages. Default is 10. * * @return array */ public static function get_frontpage_urls( $limit_post_pages = 10 ) { static $frontpage_urls = array(); if ( ! isset( $frontpage_urls[ $limit_post_pages ] ) ) { $front_page = get_option( 'show_on_front' ); $full_urls = array(); $home_path = Util_Environment::home_url_uri(); $site_path = Util_Environment::site_url_uri(); $full_urls[] = get_home_url() . '/'; if ( $site_path !== $home_path ) { $full_urls[] = site_url() . '/'; } $full_urls = array_merge( $full_urls, self::get_older_pages( $home_path, $limit_post_pages, 'post' ) ); $frontpage_urls[ $limit_post_pages ] = $full_urls; } return $frontpage_urls[ $limit_post_pages ]; } /** * Return full urls for the page with posts including older pages * * @param int $limit_post_pages Limit for posts/pages. Default is 10. * * @return array */ public static function get_postpage_urls( $limit_post_pages = 10 ) { static $postpage_urls = array(); if ( ! isset( $postpage_urls[ $limit_post_pages ] ) ) { $posts_page_uri = ''; $full_urls = array(); $posts_page_id = get_option( 'page_for_posts' ); if ( $posts_page_id ) { $posts_page_uri = get_page_uri( $posts_page_id ); $page_link = get_home_url() . '/' . trim( $posts_page_uri, '/' ) . '/'; $full_urls[] = $page_link; } if ( $posts_page_uri ) { $full_urls = array_merge( $full_urls, self::get_older_pages( $posts_page_uri, $limit_post_pages, 'post' ) ); } $postpage_urls[ $limit_post_pages ] = $full_urls; } return $postpage_urls[ $limit_post_pages ]; } /** * Returns all urls related to a custom post type post * * @since 2.1.7 * * @param unknown $post_id Post ID. * @param int $limit_post_pages Limit for posts/pages. Default is 10. * * @return array */ public static function get_cpt_archive_urls( $post_id, $limit_post_pages = 10 ) { static $cpt_archive_urls = array(); $post = get_post( $post_id ); if ( $post && Util_Environment::is_custom_post_type( $post ) && ! isset( $cpt_archive_urls[ $limit_post_pages ] ) ) { $full_urls = array(); $post_type = $post->post_type; $archive_link = get_post_type_archive_link( $post_type ); $posts_page_uri = str_replace( home_url(), '', $archive_link ); if ( $posts_page_uri ) { $full_urls[] = $archive_link; $full_urls = array_merge( $full_urls, self::get_older_pages( $posts_page_uri, $limit_post_pages, $post_type ) ); } $cpt_archive_urls[ $limit_post_pages ] = $full_urls; } return $cpt_archive_urls[ $limit_post_pages ]; } /** * Return older pages listing posts * * @param unknown $posts_page_uri Posts page URI. * @param int $limit_post_pages Limit for posts/pages. Default is 10. * @param string $post_type Post Type. Default is post. * * @return array */ private static function get_older_pages( $posts_page_uri, $limit_post_pages = 10, $post_type = 'post' ) { $full_urls = array(); $count_posts = wp_count_posts( $post_type ); $posts_number = $count_posts->publish; $posts_per_page = get_option( 'posts_per_page' ); $posts_pages_number = @ceil( $posts_number / $posts_per_page ); if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) { $posts_pages_number = $limit_post_pages; } for ( $pagenum = 2; $pagenum <= $posts_pages_number; $pagenum++ ) { $home_pagenum_link = self::get_pagenum_link( $posts_page_uri, $pagenum ); $full_urls[] = $home_pagenum_link; } return $full_urls; } /** * Returns all urls related to a post * * @param unknown $post_id Post ID. * * @return array */ public static function get_post_urls( $post_id ) { static $post_urls = array(); if ( ! isset( $post_urls[ $post_id ] ) ) { $full_urls = array(); $post_link = get_permalink( $post_id ); $post_uri = str_replace( Util_Environment::home_domain_root_url(), '', $post_link ); $full_urls[] = $post_link; $uris[] = $post_uri; $post = get_post( $post_id ); $matches = array(); $post_pages_number = preg_match_all( '/\<\!\-\-nextpage\-\-\>/', $post->post_content, $matches ); if ( $post && $post_pages_number > 0 ) { global $wp_rewrite; ++$post_pages_number; for ( $pagenum = 2; $pagenum <= $post_pages_number; $pagenum++ ) { if ( 'page' === get_option( 'show_on_front' ) && (int) get_option( 'page_on_front' ) === $post->ID ) { $post_pagenum_link = trailingslashit( $post_link ) . user_trailingslashit( "$wp_rewrite->pagination_base/" . $pagenum, 'single_paged' ); } else { $post_pagenum_link = trailingslashit( $post_link ) . user_trailingslashit( $pagenum, 'single_paged' ); } $full_urls[] = $post_pagenum_link; } } $post_urls[ $post_id ] = $full_urls; } return $post_urls[ $post_id ]; } /** * Return full urls for the posts comment pages * * @param unknown $post_id Post ID. * * @return array */ public static function get_post_comments_urls( $post_id ) { static $post_comments_urls = array(); if ( ! isset( $post_comments_urls[ $post_id ] ) ) { $full_urls = array(); $comments_number = get_comments_number( $post_id ); $comments_per_page = get_option( 'comments_per_page' ); $comments_pages_number = @ceil( $comments_number / $comments_per_page ); for ( $pagenum = 1; $pagenum <= $comments_pages_number; $pagenum++ ) { $comments_pagenum_link = self::get_comments_pagenum_link( $post_id, $pagenum ); $full_urls[] = $comments_pagenum_link; } $post_comments_urls[ $post_id ] = $full_urls; } return $post_comments_urls[ $post_id ]; } /** * Return full urls for the authors pages * * @param unknown $post_author Post author. * @param int $limit_post_pages Page/post limit. Default is 10. * * @return array */ public static function get_post_author_urls( $post_author, $limit_post_pages = 10 ) { static $feed_author_urls = array(); $key = md5( $post_author . ',' . $limit_post_pages ); if ( ! isset( $post_author_urls[ $key ] ) ) { $full_urls = array(); $posts_number = count_user_posts( $post_author ); $posts_per_page = get_option( 'posts_per_page' ); $posts_pages_number = @ceil( $posts_number / $posts_per_page ); if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) { $posts_pages_number = $limit_post_pages; } $author_link = get_author_posts_url( $post_author ); $author_uri = str_replace( Util_Environment::home_domain_root_url(), '', $author_link ); for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) { $author_pagenum_link = self::get_pagenum_link( $author_uri, $pagenum ); $full_urls[] = $author_pagenum_link; } $post_author_urls[ $key ] = $full_urls; } return $post_author_urls[ $key ]; } /** * Returns full urls to post terms pages * * @param unknown $terms Terms. * @param int $limit_post_pages Page/post limit. Default is 10. * * @return array */ public static function get_post_terms_urls( $terms, $limit_post_pages = 10 ) { static $post_terms_urls = array(); $key = md5( self::_term_hash( $terms ) . ',' . $limit_post_pages ); if ( ! isset( $post_terms_urls[ $key ] ) ) { $full_urls = array(); $posts_per_page = get_option( 'posts_per_page' ); foreach ( $terms as $term ) { $term_link = get_term_link( $term, $term->taxonomy ); $term_uri = str_replace( Util_Environment::home_domain_root_url(), '', $term_link ); $posts_pages_number = @ceil( $term->count / $posts_per_page ); if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) { $posts_pages_number = $limit_post_pages; } for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) { $term_pagenum_link = self::get_pagenum_link( $term_uri, $pagenum ); $full_urls[] = $term_pagenum_link; } } $post_terms_urls[ $key ] = $full_urls; } return $post_terms_urls[ $key ]; } /** * Return full urls for daily archive pages based on provided post * * @param unknown $post Post. * @param int $limit_post_pages Page/post limit. Default is 10. * * @return array */ public static function get_daily_archive_urls( $post, $limit_post_pages = 10 ) { static $daily_archive_urls = array(); $post_type = $post->post_type; $archive_slug = self::_get_archive_slug( $post ); $key = md5( $post->ID . ',' . $limit_post_pages ); if ( ! isset( $daily_archive_urls[ $key ] ) ) { $full_urls = array(); $post_date = strtotime( $post->post_date ); $post_year = gmdate( 'Y', $post_date ); $post_month = gmdate( 'm', $post_date ); $post_day = gmdate( 'd', $post_date ); $posts_per_page = get_option( 'posts_per_page' ); $posts_number = self::get_archive_posts_count( $post_year, $post_month, $post_day, $post_type ); $posts_pages_number = @ceil( $posts_number / $posts_per_page ); if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) { $posts_pages_number = $limit_post_pages; } $day_link = get_day_link( $post_year, $post_month, $post_day ); $day_uri = $archive_slug . str_replace( Util_Environment::home_domain_root_url(), '', $day_link ); for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) { $day_pagenum_link = self::get_pagenum_link( $day_uri, $pagenum ); $full_urls[] = $day_pagenum_link; } $daily_archive_urls[ $key ] = $full_urls; } return $daily_archive_urls[ $key ]; } /** * Return full urls for montly archive pages based on provided post * * @param unknown $post Post. * @param int $limit_post_pages Page/post limit. Default is 10. * * @return array */ public static function get_monthly_archive_urls( $post, $limit_post_pages = 10 ) { static $monthly_archive_urls = array(); $post_type = $post->post_type; $archive_slug = self::_get_archive_slug( $post ); $key = md5( $post->ID . ',' . $limit_post_pages ); if ( ! isset( $monthly_archive_urls[ $key ] ) ) { $full_urls = array(); $post_date = strtotime( $post->post_date ); $post_year = gmdate( 'Y', $post_date ); $post_month = gmdate( 'm', $post_date ); $posts_per_page = get_option( 'posts_per_page' ); $posts_number = self::get_archive_posts_count( $post_year, $post_month, '', $post_type ); $posts_pages_number = @ceil( $posts_number / $posts_per_page ); if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) { $posts_pages_number = $limit_post_pages; } $month_link = get_month_link( $post_year, $post_month ); $month_uri = $archive_slug . str_replace( Util_Environment::home_domain_root_url(), '', $month_link ); for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) { $month_pagenum_link = self::get_pagenum_link( $month_uri, $pagenum ); $full_urls[] = $month_pagenum_link; } $monthly_archive_urls[ $key ] = $full_urls; } return $monthly_archive_urls[ $key ]; } /** * Return full urls for yearly archive pages based on provided post * * @param unknown $post Post. * @param int $limit_post_pages Page/post limit. Default is 10. * * @return array */ public static function get_yearly_archive_urls( $post, $limit_post_pages = 10 ) { static $yearly_archive_urls = array(); $post_type = $post->post_type; $archive_slug = self::_get_archive_slug( $post ); $key = md5( $post->ID . ',' . $limit_post_pages ); if ( ! isset( $yearly_archive_urls[ $key ] ) ) { $full_urls = array(); $post_date = strtotime( $post->post_date ); $post_year = gmdate( 'Y', $post_date ); $posts_per_page = get_option( 'posts_per_page' ); $posts_number = self::get_archive_posts_count( $post_year, '', '', $post_type ); $posts_pages_number = @ceil( $posts_number / $posts_per_page ); if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) { $posts_pages_number = $limit_post_pages; } $year_link = get_year_link( $post_year ); $year_uri = $archive_slug . str_replace( Util_Environment::home_domain_root_url(), '', $year_link ); for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) { $year_pagenum_link = self::get_pagenum_link( $year_uri, $pagenum ); $full_urls[] = $year_pagenum_link; } $yearly_archive_urls[ $key ] = $full_urls; } return $yearly_archive_urls[ $key ]; } /** * Return full urls for the provided feed types * * @param unknown $feeds Feeds. * @param string|null $post_type Post type. * * @return array */ public static function get_feed_urls( $feeds, $post_type = null ) { static $feed_urls = array(); $key = md5( implode( ',', $feeds ) . $post_type ); if ( ! isset( $feed_urls[ $key ] ) ) { $full_urls = array(); foreach ( $feeds as $feed ) { $feed_link = self::get_feed_link( $feed, $post_type ); $full_urls[] = $feed_link; } $feed_urls[ $key ] = $full_urls; } return $feed_urls[ $key ]; } /** * Return full urls for the provided post id and feed types * * @param unknown $post_id Post ID. * @param unknown $feeds Feeds. * * @return array */ public static function get_feed_comments_urls( $post_id, $feeds ) { static $feed_comments_urls = array(); $key = md5( implode( ',', $feeds ) . $post_id ); if ( ! isset( $feed_comments_urls[ $key ] ) ) { $full_urls = array(); foreach ( $feeds as $feed ) { $post_comments_feed_link = self::get_post_comments_feed_link( $post_id, $feed ); $full_urls[] = $post_comments_feed_link; } $feed_comments_urls[ $key ] = $full_urls; } return $feed_comments_urls[ $key ]; } /** * Returns full urls for the provided post author and feed types * * @param unknown $post_author Post author. * @param unknown $feeds Feeds. * * @return array */ public static function get_feed_author_urls( $post_author, $feeds ) { static $post_author_urls = array(); $key = md5( implode( ',', $feeds ) . $post_author ); if ( ! isset( $feed_author_urls[ $key ] ) ) { $full_urls = array(); foreach ( $feeds as $feed ) { $author_feed_link = self::get_author_feed_link( $post_author, $feed ); $full_urls[] = $author_feed_link; } $feed_author_urls[ $key ] = $full_urls; } return $feed_author_urls[ $key ]; } /** * Returns full urls for the provided terms and feed types * * @param unknown $terms Terms. * @param unknown $feeds Feeds. * * @return array */ public static function get_feed_terms_urls( $terms, $feeds ) { static $feed_terms_urls = array(); $key = md5( implode( ',', $feeds ) . self::_term_hash( $terms ) ); if ( ! isset( $feed_terms_urls[ $key ] ) ) { $full_urls = array(); foreach ( $terms as $term ) { foreach ( $feeds as $feed ) { $term_feed_link = self::get_term_feed_link( $term->term_id, $term->taxonomy, $feed ); $full_urls[] = $term_feed_link; } } $feed_terms_urls[ $key ] = $full_urls; } return $feed_terms_urls[ $key ]; } /** * Returns full urls for the provided url path based pages, ie /some/page. * * @param unknown $pages Pages. * * @return array */ public static function get_pages_urls( $pages ) { static $pages_urls = array(); $key = md5( implode( ',', $pages ) ); if ( ! isset( $pages_urls[ $key ] ) ) { $full_urls = array(); foreach ( $pages as $uri ) { if ( $uri ) { $page_link = get_home_url() . '/' . trim( $uri, '/' ) . ( strpos( $uri, '?' ) !== false ? '' : '/' ); $full_urls[] = $page_link; } } $pages_urls[ $key ] = $full_urls; } return $pages_urls[ $key ]; } /** * Workaround for get_pagenum_link function * * @param string $url URL. * @param int $pagenum Page number. * * @return string */ public static function get_pagenum_link( $url, $pagenum = 1 ) { $request_uri = isset( $_SERVER['REQUEST_URI'] ) ? esc_url_raw( wp_unslash( $_SERVER['REQUEST_URI'] ) ) : ''; $_SERVER['REQUEST_URI'] = $url; if ( is_admin() ) { $link = self::get_pagenum_link_admin( $pagenum ); } else { $link = get_pagenum_link( $pagenum ); } $_SERVER['REQUEST_URI'] = $request_uri; return $link; } /** * Workaround for get_pagenum_link static public function when in admin * * @param unknown $pagenum Page number. * * @return string */ public static function get_pagenum_link_admin( $pagenum ) { global $wp_rewrite; $pagenum = (int) $pagenum; $request = remove_query_arg( 'paged' ); $home_root = wp_parse_url( home_url() ); $home_root = ( isset( $home_root['path'] ) ) ? $home_root['path'] : ''; $home_root = preg_quote( trailingslashit( $home_root ), '|' ); $request = preg_replace( '|^' . $home_root . '|', '', $request ); $request = preg_replace( '|^/+|', '', $request ); $qs_regex = '|\?.*?$|'; preg_match( $qs_regex, $request, $qs_match ); if ( ! empty( $qs_match[0] ) ) { $query_string = $qs_match[0]; $request = preg_replace( $qs_regex, '', $request ); } else { $query_string = ''; } $request = preg_replace( "|$wp_rewrite->pagination_base/\d+/?$|", '', $request ); $request = preg_replace( '|^index\.php|', '', $request ); $request = ltrim( $request, '/' ); $base = trailingslashit( get_bloginfo( 'url' ) ); if ( ! is_null( $wp_rewrite ) && $wp_rewrite->using_index_permalinks() && ( $pagenum > 1 || '' !== $request ) ) { $base .= 'index.php/'; } if ( $pagenum > 1 ) { $request = ( ( ! empty( $request ) ) ? trailingslashit( $request ) : $request ) . user_trailingslashit( $wp_rewrite->pagination_base . '/' . $pagenum, 'paged' ); } $result = $base . $request . $query_string; $result = apply_filters( 'get_pagenum_link', $result, $pagenum ); return $result; } /** * Workaround for get_comments_pagenum_link function * * phpcs:disable WordPress.WP.GlobalVariablesOverride.Prohibited * * @param integer $post_id Post ID. * @param integer $pagenum Page number. * @param integer $max_page Max page. * * @return string */ public static function get_comments_pagenum_link( $post_id, $pagenum = 1, $max_page = 0 ) { if ( isset( $GLOBALS['post'] ) && is_object( $GLOBALS['post'] ) ) { $old_post = &$GLOBALS['post']; } else { $GLOBALS['post'] = new \stdClass(); $old_post = null; } $GLOBALS['post']->ID = $post_id; $link = get_comments_pagenum_link( $pagenum, $max_page ); if ( $old_post ) { $GLOBALS['post'] = &$old_post; } return $link; } /** * Returns number of posts in the archive. * * phpcs:disable WordPress.DB.DirectDatabaseQuery * phpcs:disable WordPress.DB.PreparedSQL.NotPrepared * * @global $wpdb * * @param int $year Year. * @param int $month Month. * @param int $day Day number. * @param string $post_type Post type. * @return int */ public static function get_archive_posts_count( $year = 0, $month = 0, $day = 0, $post_type = 'post' ) { global $wpdb; $filters = array( 'post_type = "' . $post_type . '"', 'post_status = "publish"', ); if ( $year ) { $filters[] = sprintf( 'YEAR(post_date) = %d', $year ); } if ( $month ) { $filters[] = sprintf( 'MONTH(post_date) = %d', $month ); } if ( $day ) { $filters[] = sprintf( 'DAY(post_date) = %d', $day ); } $where = implode( ' AND ', $filters ); $sql = sprintf( 'SELECT COUNT(*) FROM %s WHERE %s', $wpdb->posts, $where ); $count = (int) $wpdb->get_var( $sql ); return $count; } /** * Workaround for get_feed_link function, remove filtering. * * @param string $feed Feed. * @param null|string $post_type Post type. * * @return mixed */ public static function get_feed_link( $feed = '', $post_type = null ) { global $wp_rewrite; if ( $post_type ) { return get_post_type_archive_feed_link( $post_type, $feed ); } $permalink = $wp_rewrite->get_feed_permastruct(); if ( '' !== $permalink ) { if ( false !== strpos( $feed, 'comments_' ) ) { $feed = str_replace( 'comments_', '', $feed ); $permalink = $wp_rewrite->get_comment_feed_permastruct(); } if ( get_default_feed() === $feed ) { $feed = ''; } $permalink = str_replace( '%feed%', $feed, $permalink ); $permalink = preg_replace( '#/+#', '/', "/$permalink" ); $output = home_url( user_trailingslashit( $permalink, 'feed' ) ); } else { if ( empty( $feed ) ) { $feed = get_default_feed(); } if ( false !== strpos( $feed, 'comments_' ) ) { $feed = str_replace( 'comments_', 'comments-', $feed ); } $output = home_url( "?feed={$feed}" ); } return $output; } /** * Workaround for get_post_comments_feed_link function, remove filtering. * * @param int $post_id Post ID. * @param string $feed Feed. * * @return string */ public static function get_post_comments_feed_link( $post_id = 0, $feed = '' ) { $post_id = absint( $post_id ); if ( ! $post_id ) { $post_id = get_the_ID(); } if ( empty( $feed ) ) { $feed = get_default_feed(); } if ( '' !== get_option( 'permalink_structure' ) ) { if ( 'page' === get_option( 'show_on_front' ) && (int) get_option( 'page_on_front' ) === $post_id ) { $url = _get_page_link( $post_id ); } else { $url = get_permalink( $post_id ); } $url = trailingslashit( $url ) . 'feed'; if ( get_default_feed() !== $feed ) { $url .= "/$feed"; } $url = user_trailingslashit( $url, 'single_feed' ); } else { $type = get_post_field( 'post_type', $post_id ); if ( 'page' === $type ) { $url = home_url( "?feed=$feed&page_id=$post_id" ); } else { $url = home_url( "?feed=$feed&p=$post_id" ); } } return $url; } /** * Workaround for get_author_feed_link function, remove filtering. * * @param unknown $author_id Author ID. * @param string $feed Feed. * * @return string */ public static function get_author_feed_link( $author_id, $feed = '' ) { $author_id = (int) $author_id; $permalink_structure = get_option( 'permalink_structure' ); if ( empty( $feed ) ) { $feed = get_default_feed(); } if ( '' === $permalink_structure ) { $link = home_url( "?feed=$feed&author=" . $author_id ); } else { $link = get_author_posts_url( $author_id ); if ( get_default_feed() === $feed ) { $feed_link = 'feed'; } else { $feed_link = "feed/$feed"; } $link = trailingslashit( $link ) . user_trailingslashit( $feed_link, 'feed' ); } return $link; } /** * Workaround for get_term_feed_link function, remove filtering. * * @param unknown $term_id Term ID. * @param string $taxonomy Taxonomy. * @param string $feed Feed. * * @return bool|string */ public static function get_term_feed_link( $term_id, $taxonomy = 'category', $feed = '' ) { $term_id = (int) $term_id; $term = get_term( $term_id, $taxonomy ); if ( empty( $term ) || is_wp_error( $term ) ) { return false; } if ( empty( $feed ) ) { $feed = get_default_feed(); } $permalink_structure = get_option( 'permalink_structure' ); if ( '' === $permalink_structure ) { if ( 'category' === $taxonomy ) { $link = home_url( "?feed=$feed&cat=$term_id" ); } elseif ( 'post_tag' === $taxonomy ) { $link = home_url( "?feed=$feed&tag=$term->slug" ); } else { $t = get_taxonomy( $taxonomy ); $link = home_url( "?feed=$feed&$t->query_var=$term->slug" ); } } else { $link = get_term_link( $term_id, $term->taxonomy ); if ( get_default_feed() === $feed ) { $feed_link = 'feed'; } else { $feed_link = "feed/$feed"; } $link = trailingslashit( $link ) . user_trailingslashit( $feed_link, 'feed' ); } return $link; } /** * Get rest posts urls * * @return array */ public static function get_rest_posts_urls() { static $posts_urls = array(); if ( empty( $posts_urls ) ) { $types = get_post_types( array( 'show_in_rest' => true ), 'objects' ); $wp_json_base = self::wp_json_base(); foreach ( $types as $post_type ) { $rest_base = ( ! empty( $post_type->rest_base ) ? $post_type->rest_base : $post_type->name ); $posts_urls[] = $wp_json_base . $rest_base; } } return $posts_urls; } /** * Get rest posts urls * * @param int $post_id Post ID. * * @return array */ public static function get_rest_post_urls( $post_id ) { static $post_urls = array(); if ( ! isset( $post_urls[ $post_id ] ) ) { $post = get_post( $post_id ); $urls = array(); $wp_json_base = self::wp_json_base(); if ( $post ) { $post_type = get_post_type_object( $post->post_type ); $rest_base = ( ! empty( $post_type->rest_base ) ? $post_type->rest_base : $post_type->name ); $urls[] = $wp_json_base . $rest_base . '/' . $post->ID; } $post_urls[ $post_id ] = $urls; } return $post_urls[ $post_id ]; } /** * Get wp json base * * @return string */ private static function wp_json_base() { $wp_json_base = rtrim( get_home_url(), '/' ) . W3TC_WP_JSON_URI; $wp_json_base = apply_filters( 'w3tc_pageurls_wp_json_base', $wp_json_base ); return $wp_json_base; } /** * Complement with mirron URLs * * @param array $queued_urls Queued URLs. * * @return string */ public static function complement_with_mirror_urls( $queued_urls ) { $config = Dispatcher::config(); if ( ! $config->get_boolean( 'pgcache.mirrors.enabled' ) || Util_Environment::is_wpmu_subdomain() ) { return $queued_urls; } $home_urls = $config->get_array( 'pgcache.mirrors.home_urls' ); $url_prefix = trailingslashit( get_home_url() ); $mirror_urls = array(); foreach ( $queued_urls as $url ) { if ( substr( $url, 0, strlen( $url_prefix ) ) !== $url_prefix ) { continue; } foreach ( $home_urls as $home ) { if ( ! empty( $home ) ) { $mirror_urls[] = trailingslashit( $home ) . substr( $url, strlen( $url_prefix ) ); } } } return array_merge( $queued_urls, $mirror_urls ); } /** * Term hash * * @param array $terms Terms. * * @return string */ private static function _term_hash( $terms ) { $term_hash = array(); foreach ( $terms as $term ) { $term_hash[] = $term->term_id; } $term_hashed = md5( implode( ',', $term_hash ) ); return $term_hashed; } /** * Get archive slug * * @param unknown $post Post. * * @return string */ private static function _get_archive_slug( $post ) { global $wp_post_types; $archive_slug = ''; $args = $wp_post_types[ $post->post_type ]; if ( $args->has_archive ) { global $wp_rewrite; $archive_slug = true === $args->has_archive ? $args->rewrite['slug'] : $args->has_archive; if ( $args->rewrite['with_front'] ) { $archive_slug = substr( $wp_rewrite->front, 1 ) . $archive_slug; } else { $archive_slug = $wp_rewrite->root . $archive_slug; } } return $archive_slug; } /** * Gets page title based on key. * * @since 2.4.0 * * @param string $id Page ID. * * @return array */ public static function get_page_mapping( $id ) { $map = array( 'w3tc_dashboard' => array( 'page_name' => esc_html__( 'Dashboard', 'w3-total-cache' ), ), 'w3tc_feature_showcase' => array( 'page_name' => esc_html__( 'Feature Showcase', 'w3-total-cache' ), ), 'w3tc_general' => array( 'page_name' => esc_html__( 'General Settings', 'w3-total-cache' ), ), 'w3tc_pgcache' => array( 'page_name' => esc_html__( 'Page Cache', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_minify' => array( 'page_name' => esc_html__( 'Minify', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_dbcache' => array( 'page_name' => esc_html__( 'Database Cache', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_objectcache' => array( 'page_name' => esc_html__( 'Object Cache', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_browsercache' => array( 'page_name' => esc_html__( 'Browser Cache', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_cachegroups' => array( 'page_name' => esc_html__( 'Cache Groups', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_cdn' => array( 'page_name' => esc_html__( 'CDN', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_fragmentcache' => array( 'page_name' => esc_html__( 'Fragment Cache', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_support' => array( 'page_name' => esc_html__( 'Support', 'w3-total-cache' ), ), 'w3tc_pagespeed' => array( 'page_name' => esc_html__( 'Google PageSpeed', 'w3-total-cache' ), ), 'w3tc_userexperience' => array( 'page_name' => esc_html__( 'User Experience', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_install' => array( 'page_name' => esc_html__( 'Install', 'w3-total-cache' ), ), 'w3tc_setup_guide' => array( 'page_name' => esc_html__( 'Setup Guide', 'w3-total-cache' ), ), 'w3tc_extensions' => array( 'page_name' => esc_html__( 'Extensions', 'w3-total-cache' ), ), 'w3tc_stats' => array( 'page_name' => esc_html__( 'Statistics', 'w3-total-cache' ), ), 'w3tc_extension_page_imageservice' => array( 'page_name' => esc_html__( 'Image Converter', 'w3-total-cache' ), 'parent_name' => esc_html__( 'Extensions', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_extensions#imageservice' ) ), ), 'w3tc_monitoring' => array( 'page_name' => esc_html__( 'Monitoring', 'w3-total-cache' ), 'parent_name' => esc_html__( 'General Settings', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general' ) ), ), 'w3tc_about' => array( 'page_name' => esc_html__( 'About', 'w3-total-cache' ), ), 'swarmify' => array( 'page_name' => 'Swarmify', 'parent_name' => esc_html__( 'Extensions', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_extensions#swarmify' ) ), ), 'cloudflare' => array( 'page_name' => 'Cloudflare', 'parent_name' => esc_html__( 'Extensions', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_extensions#cloudflare' ) ), ), 'amp' => array( 'page_name' => 'AMP', 'parent_name' => esc_html__( 'Extensions', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_extensions#amp' ) ), ), 'alwayscached' => array( 'page_name' => esc_html__( 'Always Cached', 'w3-total-cache' ), 'parent_name' => esc_html__( 'Extensions', 'w3-total-cache' ), 'parent_link' => esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_extensions#alwayscached' ) ), ), ); $map = apply_filters( 'w3tc_page_mapping', $map ); return ! empty( $map[ $id ] ) ? $map[ $id ] : array(); } }
[+]
..
[-] SystemOpCache_AdminActions.php
[edit]
[-] Generic_Plugin_AdminCompatibility.php
[edit]
[-] Util_Admin.php
[edit]
[+]
inc
[-] Extension_Swarmify_Core.php
[edit]
[-] Cdn_RackSpaceCdn_Page_View.js
[edit]
[-] Extension_CloudFlare_Popup_View_Intro.php
[edit]
[-] Extension_ImageService_Widget_View.php
[edit]
[-] UsageStatistics_Page_PageCacheRequests_View.php
[edit]
[-] Cdn_GoogleDrive_Popup_AuthReturn_View.php
[edit]
[-] Extension_Genesis_Page.php
[edit]
[-] Cache_File_Cleaner.php
[edit]
[-] SystemOpCache_Core.php
[edit]
[-] Cdnfsd_TransparentCDN_Page.php
[edit]
[-] Util_WpFile_FilesystemCopyException.php
[edit]
[-] Extension_CloudFlare_Popup.php
[edit]
[-] Extension_ImageService_Plugin_Admin.css
[edit]
[-] Extension_FragmentCache_Page_View.php
[edit]
[-] Extension_NewRelic_Widget_View.js
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Regions.php
[edit]
[-] Generic_Page_General.php
[edit]
[-] UserExperience_LazyLoad_Mutator_Picture.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Deauthorize.php
[edit]
[-] Generic_Page_Dashboard_View.css
[edit]
[-] Extension_Genesis_Plugin_Admin.php
[edit]
[-] BrowserCache_Environment.php
[edit]
[-] Extension_NewRelic_Api.php
[edit]
[-] Extension_ImageService_Environment.php
[edit]
[-] Cache_Memcache.php
[edit]
[-] PgCache_Environment.php
[edit]
[-] PageSpeed_Page_View_FromAPI.php
[edit]
[-] Cdn_Util.php
[edit]
[-] UserExperience_LazyLoad_Page_View.php
[edit]
[-] Generic_WidgetServices_View.php
[edit]
[-] Extension_CloudFlare_Widget.php
[edit]
[-] CdnEngine_GoogleDrive.php
[edit]
[-] PageSpeed_Widget_View.css
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Intro.php
[edit]
[-] Cdnfsd_BunnyCdn_Engine.php
[edit]
[-] Cdn_RackSpace_Api_Cdn.php
[edit]
[-] BrowserCache_Core.php
[edit]
[-] Extension_FragmentCache_Page.php
[edit]
[-] Cdn_GoogleDrive_Popup_AuthReturn.php
[edit]
[-] Util_WpmuBlogmap.php
[edit]
[-] ModuleStatus.php
[edit]
[-] UsageStatistics_Source_AccessLog.php
[edit]
[-] Cdn_Page.php
[edit]
[-] UserExperience_Emoji_Extension.php
[edit]
[-] Cdn_GoogleDrive_AdminActions.php
[edit]
[-] Cdn_RackSpace_Api_CloudFiles.php
[edit]
[-] Extension_FragmentCache_WpObjectCache.php
[edit]
[-] PgCache_Page.php
[edit]
[-] Minify_Plugin.php
[edit]
[-] Cache_Xcache.php
[edit]
[-] PageSpeed_Api.php
[edit]
[-] Generic_WidgetBoldGrid_View.php
[edit]
[-] readme.txt
[edit]
[-] Cdnfsd_Core.php
[edit]
[-] Minify_ConfigLabels.php
[edit]
[-] UsageStatistics_Sources.php
[edit]
[-] BrowserCache_Environment_LiteSpeed.php
[edit]
[-] Cdn_RackSpaceCdn_Page.php
[edit]
[+]
extension-example
[-] Extension_Swarmify_Page_View.php
[edit]
[-] Extension_AlwaysCached_Page.php
[edit]
[-] UserExperience_Remove_CssJs_Page_View.php
[edit]
[-] Extension_CloudFlare_Plugin.php
[edit]
[-] CdnEngine_Azure_MI_Utility.php
[edit]
[-] Util_Mime.php
[edit]
[+]
languages
[-] BrowserCache_Page_View_QuickReference.php
[edit]
[-] UserExperience_DeferScripts_Script.js
[edit]
[+]
vendor
[-] Util_UsageStatistics.php
[edit]
[-] Extension_CloudFlare_Page_View.php
[edit]
[-] UserExperience_DeferScripts_Extension.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php
[edit]
[-] Cdn_BunnyCdn_Popup.php
[edit]
[-] CdnEngine_Mirror_CloudFront.php
[edit]
[-] UsageStatistics_Page_ObjectCacheLog_View.php
[edit]
[-] ObjectCache_DiskPopup.js
[edit]
[-] Extension_NewRelic_Popup.php
[edit]
[-] Extension_NewRelic_Service.php
[edit]
[-] Extension_NewRelic_GeneralPage.php
[edit]
[-] Generic_Plugin_Admin_View_Faq.php
[edit]
[-] Extension_Wpml_Plugin_Admin.php
[edit]
[-] press.txt
[edit]
[-] Util_File.php
[edit]
[-] Cdn_RackSpaceCdn_Popup.php
[edit]
[-] Extension_ImageService_Widget.js
[edit]
[-] UsageStatistics_Page_DbRequests_View.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Configured.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Regions.php
[edit]
[-] Util_Activation.php
[edit]
[-] Generic_WidgetAccount_View.php
[edit]
[-] UserExperience_LazyLoad_Plugin.php
[edit]
[-] Cdnfsd_CloudFront_Page_View.js
[edit]
[-] UsageStatistics_AdminActions.php
[edit]
[-] Cdnfsd_Util.php
[edit]
[-] PageSpeed_Widget.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Create.php
[edit]
[-] PageSpeed_Page_View.css
[edit]
[-] Extension_FragmentCache_Plugin.php
[edit]
[-] Extension_AlwaysCached_Queue.php
[edit]
[-] CdnEngine.php
[edit]
[-] PgCache_Page_View.js
[edit]
[-] SystemOpCache_Plugin_Admin.php
[edit]
[-] Cache_File.php
[edit]
[-] Generic_Environment.php
[edit]
[-] Util_Installed.php
[edit]
[-] Licensing_AdminActions.php
[edit]
[-] CacheFlush.php
[edit]
[-] ObjectCache_DiskPopup_View.php
[edit]
[-] SetupGuide_Plugin_Admin.php
[edit]
[-] Extension_AlwaysCached_Page_View_BoxQueue.php
[edit]
[-] Util_Environment_Exception.php
[edit]
[-] Cdn_AdminNotes.php
[edit]
[-] UsageStatistics_Page_View.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Created.php
[edit]
[-] Extension_AlwaysCached_Plugin.php
[edit]
[-] Generic_Page_About.php
[edit]
[+]
wp-content
[-] UsageStatistics_StorageWriter.php
[edit]
[-] Extension_Genesis_Page_View.php
[edit]
[-] Cdn_Core_Admin.php
[edit]
[-] Support_Page.php
[edit]
[-] Extension_NewRelic_Plugin.php
[edit]
[-] Minify_GeneralPage_View_ShowHelp.js
[edit]
[-] w3-total-cache-old-php.php
[edit]
[-] PgCache_ContentGrabber.php
[edit]
[-] Util_PageUrls.php
[edit]
[-] DbCache_Plugin.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Intro.php
[edit]
[-] Cdn_RackSpaceCdn_AdminActions.php
[edit]
[-] BrowserCache_Page_View_SectionSecurity.php
[edit]
[-] Cdnfsd_TransparentCDN_Page_View.php
[edit]
[-] DbCache_WpdbBase.php
[edit]
[-] Cdn_AdminActions.php
[edit]
[-] CacheGroups_Plugin_Admin.php
[edit]
[-] Cdn_Plugin.php
[edit]
[-] Generic_WidgetServices.php
[edit]
[-] ObjectCache_Plugin.php
[edit]
[-] CdnEngine_S3.php
[edit]
[-] Dispatcher.php
[edit]
[-] Util_WpFile_FilesystemMkdirException.php
[edit]
[-] Generic_WidgetPartners_View.php
[edit]
[-] Generic_Plugin_AdminNotices.css
[edit]
[-] Root_AdminActions.php
[edit]
[-] Cache_File_Cleaner_Generic.php
[edit]
[-] UserExperience_LazyLoad_Mutator.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php
[edit]
[-] Generic_ConfigLabels.php
[edit]
[-] PageSpeed_Data.php
[edit]
[-] Minify_Extract.php
[edit]
[-] PgCache_ConfigLabels.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Deauthorized.php
[edit]
[-] DbCache_Wpdb.php
[edit]
[-] Extension_NewRelic_Widget_View.css
[edit]
[-] Generic_GeneralPage_View_ShowEdge.js
[edit]
[-] Generic_WidgetBoldGrid_AdminActions.php
[edit]
[-] Extension_WordPressSeo_Plugin.php
[edit]
[-] DbCache_WpdbNew.php
[edit]
[-] Cdn_BunnyCdn_Widget_View_Authorized.php
[edit]
[-] UsageStatistics_Page_View.js
[edit]
[-] Extension_CloudFlare_Page_View.js
[edit]
[-] Generic_Plugin_Admin.php
[edit]
[-] CdnEngine_RackSpaceCloudFiles.php
[edit]
[-] Util_Environment.php
[edit]
[-] CdnEngine_Ftp.php
[edit]
[-] UserExperience_Page_View.php
[edit]
[-] DbCache_Environment.php
[edit]
[-] Root_AdminActivation.php
[edit]
[-] Generic_Page_Dashboard.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Containers.php
[edit]
[-] Generic_WidgetSpreadTheWord_Plugin.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page_View.js
[edit]
[-] UserExperience_Remove_CssJs_Mutator.php
[edit]
[-] Util_Rule.php
[edit]
[-] UsageStatistics_Sources_Memcached.php
[edit]
[-] Extension_FragmentCache_GeneralPage.php
[edit]
[-] Cdnfsd_CloudFront_Engine.php
[edit]
[-] security.md
[edit]
[-] ObjectCache_Page.php
[edit]
[-] Extension_NewRelic_AdminActions.php
[edit]
[-] Cdn_CacheFlush.php
[edit]
[-] Extension_FragmentCache_Core.php
[edit]
[-] Cdn_GoogleDrive_Page.php
[edit]
[-] FeatureShowcase_Plugin_Admin.php
[edit]
[-] CdnEngine_Mirror_BunnyCdn.php
[edit]
[-] ConfigUtil.php
[edit]
[-] UserExperience_DeferScripts_Page_View.php
[edit]
[-] Extension_Amp_Plugin.php
[edit]
[-] Cdn_Page_View_Fsd_HeaderActions.php
[edit]
[-] ConfigSettingsTabs.php
[edit]
[-] Util_WpFile_FilesystemOperationException.php
[edit]
[-] ConfigSettingsTabsKeys.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Intro.php
[edit]
[-] Cdnfsd_Plugin_Admin.php
[edit]
[-] Extension_FragmentCache_Api.php
[edit]
[-] Generic_Plugin_AdminNotices.js
[edit]
[-] Mobile_Redirect.php
[edit]
[-] Util_Http.php
[edit]
[-] Util_Ui.php
[edit]
[-] Minify_Plugin_Admin.php
[edit]
[-] Extensions_AdminActions.php
[edit]
[-] Cache_Base.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_WPGoogleMaps.php
[edit]
[-] Generic_Faq.php
[edit]
[-] Extension_WordPressSeo_Plugin_Admin.php
[edit]
[-] Extension_FragmentCache_Environment.php
[edit]
[-] CdnEngine_Mirror_Cotendo.php
[edit]
[-] Extension_NewRelic_Page_View_Apm.php
[edit]
[-] Generic_Page_Install.php
[edit]
[-] Minify_Core.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Distribution.php
[edit]
[-] Generic_AdminActions_Config.php
[edit]
[-] Cdn_Environment.php
[edit]
[-] UserExperience_Plugin_Admin.php
[edit]
[-] Generic_WidgetStats.php
[edit]
[+]
lib
[-] Extension_CloudFlare_Plugin_Admin.php
[edit]
[-] Cdnfsd_BunnyCdn_Page_View.php
[edit]
[-] LICENSE
[edit]
[-] Licensing_Plugin_Admin.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page_View.php
[edit]
[-] Cdn_GeneralPage_View.php
[edit]
[-] Extension_CloudFlare_Widget_View.css
[edit]
[-] Cdnfsd_GeneralPage_View.php
[edit]
[-] Extension_CloudFlare_Popup_View_Zones.php
[edit]
[-] Extension_AlwaysCached_Worker.php
[edit]
[-] Cdn_BunnyCdn_Page_View.php
[edit]
[-] UsageStatistics_Source_DbQueriesLog.php
[edit]
[-] UsageStatistics_Page_View_Ad.php
[edit]
[-] DbCache_WpdbLegacy.php
[edit]
[-] Util_PageSpeed.php
[edit]
[-] Minify_HelpPopup_View.php
[edit]
[-] Extension_ImageService_Page_View.php
[edit]
[-] Generic_WidgetPartners.php
[edit]
[-] Enterprise_SnsServer.php
[edit]
[-] Extension_CloudFlare_GeneralPage_View.php
[edit]
[-] Extension_ImageService_Plugin_Admin.js
[edit]
[-] w3-total-cache.php
[edit]
[-] Cdn_BunnyCdn_Page_View.js
[edit]
[-] ConfigState.php
[edit]
[-] Generic_AdminActions_Test.php
[edit]
[-] Cache_Nginx_Memcached.php
[edit]
[-] PgCache_Plugin.php
[edit]
[-] Util_Environment_Exceptions.php
[edit]
[-] Cdnfsd_CloudFront_Page_View.php
[edit]
[-] UsageStatistics_Sources_Redis.php
[edit]
[-] UsageStatistics_Page_View_Disabled.php
[edit]
[-] Extension_CloudFlare_AdminActions.php
[edit]
[-] Extension_AlwaysCached_AdminActions.php
[edit]
[-] Extension_CloudFlare_Page.php
[edit]
[-] Cache_File_Generic.php
[edit]
[-] Cache_Memcached_Stats.php
[edit]
[-] CdnEngine_Mirror.php
[edit]
[-] Extension_ImageService_Widget.php
[edit]
[-] Util_WpFile.php
[edit]
[-] Cache_Apc.php
[edit]
[-] ObjectCache_Plugin_Admin.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup.php
[edit]
[-] Extension_NewRelic_Widget_View_NotConfigured.php
[edit]
[-] PageSpeed_Widget_View.php
[edit]
[-] Licensing_Core.php
[edit]
[-] UserExperience_LazyLoad_Mutator_Unmutable.php
[edit]
[-] Minify_Page.php
[edit]
[-] Extensions_Page.php
[edit]
[-] Util_AttachToActions.php
[edit]
[-] Generic_AdminNotes.php
[edit]
[-] Cdn_BunnyCdn_Page_View_Purge_Urls.php
[edit]
[-] Cdnfsd_BunnyCdn_Page_View.js
[edit]
[-] Minify_AutoJs.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup.php
[edit]
[-] UserExperience_Preload_Requests_Page_View.php
[edit]
[-] Generic_WidgetSpreadTheWord.js
[edit]
[-] Util_Request.php
[edit]
[-] Generic_WidgetBoldGrid_Logo.svg
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Services.php
[edit]
[-] ObjectCache_ConfigLabels.php
[edit]
[-] UsageStatistics_StorageReader.php
[edit]
[-] BrowserCache_Page.php
[edit]
[-] Extension_CloudFlare_SettingsForUi.php
[edit]
[-] Cdn_BunnyCdn_Widget_View_Unauthorized.php
[edit]
[-] CdnEngine_Mirror_RackSpaceCdn.php
[edit]
[-] Util_WpFile_FilesystemModifyException.php
[edit]
[-] Extension_Swarmify_AdminActions.php
[edit]
[-] DbCache_WpdbInjection.php
[edit]
[-] Extension_AlwaysCached_Page_View.js
[edit]
[-] Support_Page_View_DoneContent.php
[edit]
[-] BrowserCache_Plugin.php
[edit]
[-] Util_Bus.php
[edit]
[-] UsageStatistics_Plugin.php
[edit]
[-] Cache_File_Cleaner_Generic_HardDelete.php
[edit]
[-] Generic_Page_PurgeLog.php
[edit]
[-] Cdnfsd_BunnyCdn_Page.php
[edit]
[-] Util_WpFile_FilesystemChmodException.php
[edit]
[-] Generic_AdminActions_Flush.php
[edit]
[-] Extension_Swarmify_Page.php
[edit]
[-] Extension_CloudFlare_Api.php
[edit]
[-] PageSpeed_Instructions.php
[edit]
[-] Extension_Genesis_Plugin.php
[edit]
[-] Util_Theme.php
[edit]
[-] CdnEngine_CloudFront.php
[edit]
[-] Cdnfsd_CacheFlush.php
[edit]
[-] Cdn_Environment_LiteSpeed.php
[edit]
[-] Cdn_BunnyCdn_Api.php
[edit]
[-] UserExperience_OEmbed_Extension.php
[edit]
[-] PgCache_QsExempts.php
[edit]
[-] BrowserCache_Environment_Nginx.php
[edit]
[-] Extension_ImageService_Plugin_Admin.php
[edit]
[-] Cdn_RackSpace_Api_CaCert-example.pem
[edit]
[-] Extension_NewRelic_Popup_View_ListApplications.php
[edit]
[-] UserExperience_GeneralPage_View.php
[edit]
[-] ConfigKeys.php
[edit]
[-] Extension_ImageService_Api.php
[edit]
[-] Extension_NewRelic_Plugin_Admin.php
[edit]
[-] w3-total-cache-api.php
[edit]
[-] Mobile_UserAgent.php
[edit]
[-] Util_WpFile_FilesystemRmException.php
[edit]
[-] CdnEngine_Base.php
[edit]
[-] UserExperience_GeneralPage.php
[edit]
[-] ConfigCompiler.php
[edit]
[-] PgCache_Flush.php
[edit]
[-] PageSpeed_Page.php
[edit]
[-] PageSpeed_Page_View.js
[edit]
[-] Generic_WidgetSettings_View.php
[edit]
[-] Root_Environment.php
[edit]
[-] SystemOpCache_GeneralPage_View.php
[edit]
[-] Extension_AlwaysCached_Page_Queue_View.php
[edit]
[-] UsageStatistics_Page_View_NoDebugMode.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Intro.php
[edit]
[-] ObjectCache_WpObjectCache_Regular.php
[edit]
[-] Extension_CloudFlare_View_Dashboard.js
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Pull_Zones.php
[edit]
[-] Extension_Wpml_Plugin.php
[edit]
[-] Minify_AutoCss.php
[edit]
[-] Generic_WidgetSpreadTheWord_View.php
[edit]
[-] UserExperience_Plugin_Jquery.php
[edit]
[-] Extension_ImageService_Plugin.php
[edit]
[-] CdnEngine_Azure_MI.php
[edit]
[-] Util_ConfigLabel.php
[edit]
[-] Extension_ImageService_Cron.php
[edit]
[-] UsageStatistics_GeneralPage.php
[edit]
[-] index.html
[edit]
[-] ConfigCache.php
[edit]
[-] Extension_NewRelic_AdminNotes.php
[edit]
[-] Generic_WidgetBoldGrid_View.js
[edit]
[-] ObjectCache_WpObjectCache.php
[edit]
[-] Cdnfsd_TransparentCDN_Page_View.js
[edit]
[-] ConfigStateNote.php
[edit]
[-] Mobile_Base.php
[edit]
[-] Cdnfsd_CloudFront_Popup.php
[edit]
[-] Generic_WidgetAccount.php
[edit]
[-] Generic_WidgetSettings.php
[edit]
[-] Generic_Plugin_AdminNotices.php
[edit]
[-] Enterprise_CacheFlush_MakeSnsEvent.php
[edit]
[-] Extension_Swarmify_Plugin.php
[edit]
[-] Support_Page_View_PageContent.php
[edit]
[-] Generic_AdminActions_Default.php
[edit]
[-] Cdn_GoogleDrive_Page_View.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Distributions.php
[edit]
[-] PageSpeed_Page_View.php
[edit]
[-] Extension_AlwaysCached_Page_View.php
[edit]
[-] Generic_WidgetStats.js
[edit]
[-] Extension_NewRelic_Page.php
[edit]
[-] UserExperience_Remove_CssJs_Page_View.js
[edit]
[-] Cdnfsd_Plugin.php
[edit]
[-] Cache_Memcached.php
[edit]
[-] CdnEngine_Mirror_Edgecast.php
[edit]
[-] Support_AdminActions.php
[edit]
[-] UserExperience_Page.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Success.php
[edit]
[-] Cdn_RackSpace_Api_CloudFilesCdn.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php
[edit]
[-] Extension_NewRelic_GeneralPage_View.php
[edit]
[-] Varnish_Plugin.php
[edit]
[+]
pub
[-] UsageStatistics_Page_View.css
[edit]
[-] Cdn_BunnyCdn_Popup_View_Deauthorize.php
[edit]
[-] UsageStatistics_Sources_Apc.php
[edit]
[-] UsageStatistics_Page.php
[edit]
[-] Extension_NewRelic_Popup_View.js
[edit]
[-] Extension_AlwaysCached_Page_View_BoxFlushAll.php
[edit]
[-] DbCache_Plugin_Admin.php
[edit]
[-] UsageStatistics_Source_Wpdb.php
[edit]
[-] Extension_Amp_Plugin_Admin.php
[edit]
[-] Extension_CloudFlare_Widget_Logo.png
[edit]
[-] changelog.txt
[edit]
[-] UsageStatistics_Plugin_Admin.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php
[edit]
[-] Cdn_Core.php
[edit]
[-] Util_Content.php
[edit]
[-] CacheFlush_Locally.php
[edit]
[-] Config.php
[edit]
[-] CdnEngine_Mirror_Att.php
[edit]
[-] Generic_WidgetBoldGrid.php
[edit]
[-] Cli.php
[edit]
[-] Cdn_GoogleDrive_Page_View.js
[edit]
[-] Extension_NewRelic_Popup_View_Intro.php
[edit]
[-] DbCache_WpdbInjection_QueryCaching.php
[edit]
[-] Extension_AlwaysCached_Page_View_Exclusions.php
[edit]
[-] Minify_GeneralPage_View_ShowHelpForce.js
[edit]
[-] CacheGroups_Plugin_Admin_View.php
[edit]
[-] DbCache_Page.php
[edit]
[-] Extension_CloudFlare_Cdn_Page_View.php
[edit]
[-] Enterprise_SnsBase.php
[edit]
[-] Cdn_Environment_Nginx.php
[edit]
[-] Extension_AlwaysCached_Page_View_BoxCron.php
[edit]
[-] Extension_FragmentCache_GeneralPage_View.php
[edit]
[-] CacheGroups_Plugin_Admin_View.js
[edit]
[-] UsageStatistics_Source_ObjectCacheLog.php
[edit]
[-] Cdnfsd_CloudFront_Page.php
[edit]
[-] Extension_Amp_Page_View.php
[edit]
[-] Util_Widget.php
[edit]
[-] Cdn_BunnyCdn_Page.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page.php
[edit]
[-] Cdn_RackSpaceCdn_Page_View.php
[edit]
[-] CdnEngine_Mirror_Akamai.php
[edit]
[-] Cdn_BunnyCdn_Widget.php
[edit]
[-] Extension_NewRelic_Widget_View_Apm.php
[edit]
[-] BrowserCache_Plugin_Admin.php
[edit]
[-] BrowserCache_ConfigLabels.php
[edit]
[-] CdnEngine_Azure.php
[edit]
[-] DbCache_ConfigLabels.php
[edit]
[-] PageSpeed_Widget_View.js
[edit]
[-] Minify_MinifiedFileRequestHandler.php
[edit]
[-] Extension_FragmentCache_Plugin_Admin.php
[edit]
[-] Extension_AlwaysCached_Plugin_Admin.php
[edit]
[-] BrowserCache_Environment_Apache.php
[edit]
[-] Extension_AlwaysCached_Environment.php
[edit]
[-] Generic_Plugin.php
[edit]
[-] Generic_Page_PurgeLog_View.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Deauthorized.php
[edit]
[-] Extensions_Util.php
[edit]
[-] Extensions_Plugin_Admin.php
[edit]
[-] Root_Loader.php
[edit]
[-] Extension_NewRelic_Widget.php
[edit]
[-] Minify_Environment_LiteSpeed.php
[edit]
[+]
ini
[-] Cdn_ConfigLabels.php
[edit]
[-] Cdn_Plugin_Admin.php
[edit]
[-] DbCache_Core.php
[edit]
[-] Util_WpFile_FilesystemWriteException.php
[edit]
[-] Base_Page_Settings.php
[edit]
[-] UsageStatistics_Page_View_Free.php
[edit]
[-] Minify_ContentMinifier.php
[edit]
[-] Cdn_BunnyCdn_Widget_View.css
[edit]
[-] Cache_Apcu.php
[edit]
[-] Util_Debug.php
[edit]
[-] ConfigDbStorage.php
[edit]
[-] UsageStatistics_GeneralPage_View.php
[edit]
[-] Cache_Wincache.php
[edit]
[-] PgCache_Plugin_Admin.php
[edit]
[-] UserExperience_Remove_CssJs_Extension.php
[edit]
[-] Cache_Redis.php
[edit]
[-] Util_DebugPurgeLog_Reader.php
[edit]
[-] Generic_Plugin_Survey.php
[edit]
[-] Cache.php
[edit]
[-] Varnish_Flush.php
[edit]
[-] UsageStatistics_Core.php
[edit]
[-] Extension_CloudFlare_Widget_View.php
[edit]
[-] Extension_NewRelic_Core.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Configured.php
[edit]
[-] Cdnfsd_TransparentCDN_Engine.php
[edit]
[-] Cache_Eaccelerator.php
[edit]
[-] PageSpeed_Widget_View_FromApi.php
[edit]
[-] ObjectCache_Page_View_PurgeLog.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Pull_Zones.php
[edit]
[-] Minify_Environment.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Intro.php
[edit]
[-] Util_WpFile_FilesystemRmdirException.php
[edit]
[-] Mobile_Referrer.php
[edit]
[-] CdnEngine_S3_Compatible.php
[edit]
[-] Cdn_RackSpace_Api_Tokens.php
[edit]
[-] Enterprise_Dbcache_WpdbInjection_Cluster.php
[edit]
[-] Extension_NewRelic_Widget_View_Browser.php
[edit]
[-] UserExperience_DeferScripts_Mutator.php
[edit]
[-] UsageStatistics_Source_PageCacheLog.php
[edit]
[-] Generic_Plugin_AdminRowActions.php
[edit]
[-] FeatureShowcase_Plugin_Admin_View.php
[edit]
[-] Root_AdminMenu.php
[edit]
[-] ObjectCache_Environment.php
[edit]
[-] UserExperience_Preload_Requests_Extension.php
[edit]
[-] Extension_Swarmify_Plugin_Admin.php
[edit]