PATH:
home
/
lab2454c
/
credityork.com
/
wp-content
/
plugins
/
w3-total-cache
<?php namespace W3TC; class Util_PageUrls { /** * Returns full urls for frontpage including older pages * * @param int $limit_post_pages default is 10 * @return array */ static public 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 default is 10 * @return array */ static public 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 * @param int $limit_post_pages default is 10 * @return array */ static public 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 * @param int $limit_post_pages default is 10 * @param string $post_type default is post * @return array */ static private 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 * @return array */ static public 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(); if ( $post && ( $post_pages_number = preg_match_all( '/\<\!\-\-nextpage\-\-\>/', $post->post_content, $matches ) )>0 ) { global $wp_rewrite; $post_pages_number++; for ( $pagenum = 2; $pagenum <= $post_pages_number; $pagenum++ ) { if ( 'page' == get_option( 'show_on_front' ) && 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 * @return array */ static public 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 * @param int $limit_post_pages default is 10 * @return array */ static public 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 * @param int $limit_post_pages default is 10 * @return array */ static public 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 * @param int $limit_post_pages default is 10 * @return array */ static public 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 * @param int $limit_post_pages default is 10 * @return array */ static public 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 * @param int $limit_post_pages default is 10 * @return array */ static public 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 * @param string|null $post_type * @return array */ static public 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 * @param unknown $feeds * @return array */ static public 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 * @param unknown $feeds * @return array */ static public 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 * @param unknown $feeds * @return array */ static public 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 * @return array */ static public 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 * @param int $pagenum * @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 * @return string */ static public function get_pagenum_link_admin( $pagenum ) { global $wp_rewrite; $pagenum = (int) $pagenum; $request = remove_query_arg( 'paged' ); $home_root = 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 * * @param integer $post_id * @param integer $pagenum * @param integer $max_page * @return string */ static public 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. * * @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 * @param null|string $post_type * @return mixed */ static public function get_feed_link( $feed = '', $post_type=null ) { /** * * * @var $wp_rewrite WP_Rewrite */ 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 * @param string $feed * @return string */ static public 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' ) && $post_id == get_option( 'page_on_front' ) ) $url = _get_page_link( $post_id ); else $url = get_permalink( $post_id ); $url = trailingslashit( $url ) . 'feed'; if ( $feed != get_default_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 * @param string $feed * @return string */ static public 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 ( $feed == get_default_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 * @param string $taxonomy * @param string $feed * @return bool|string */ static public 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 ( $feed == get_default_feed() ) $feed_link = 'feed'; else $feed_link = "feed/$feed"; $link = trailingslashit( $link ) . user_trailingslashit( $feed_link, 'feed' ); } return $link; } static public 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; } static public 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]; } static private 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; } static public 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 ); } static private 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; } /** * * * @param unknown $post * @return string */ static private function _get_archive_slug( $post ) { $archive_slug = ''; global $wp_post_types; $args = $wp_post_types[$post->post_type]; if ( $args->has_archive ) { global $wp_rewrite; $archive_slug = $args->has_archive === true ? $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; } }
[+]
..
[-] Generic_WidgetCommunity_View.php
[edit]
[-] UsageStatistics_Sources_Redis.php
[edit]
[-] PageSpeed_Widget.php
[edit]
[-] Cache_Base.php
[edit]
[-] Extension_CloudFlare_Page.php
[edit]
[-] ObjectCache_Page_View_PurgeLog.php
[edit]
[-] Extension_Swarmify_Page_View.php
[edit]
[-] Extension_NewRelic_Widget_View_Browser.php
[edit]
[-] UserExperience_LazyLoad_Mutator_Unmutable.php
[edit]
[-] Extension_WordPressSeo_Plugin_Admin.php
[edit]
[-] Minify_Plugin.php
[edit]
[-] Util_Environment_Exceptions.php
[edit]
[-] Extension_NewRelic_GeneralPage_View.php
[edit]
[-] UsageStatistics_Sources_Apc.php
[edit]
[-] Util_Installed.php
[edit]
[-] UsageStatistics_Page_View.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Regions.php
[edit]
[-] UsageStatistics_Source_AccessLog.php
[edit]
[-] UsageStatistics_Widget.php
[edit]
[-] CacheFlush_Locally.php
[edit]
[-] UserExperience_GeneralPage.php
[edit]
[+]
extension-example
[-] DbCache_Environment.php
[edit]
[-] Root_AdminActions.php
[edit]
[-] Cdnfsd_StackPath_Page_View.php
[edit]
[-] CdnEngine_GoogleDrive.php
[edit]
[-] DbCache_Plugin_Admin.php
[edit]
[-] UsageStatistics_Source_DbQueriesLog.php
[edit]
[-] Cdn_StackPath2_Popup_View_Intro.php
[edit]
[-] Extension_ImageService_Plugin_Admin.css
[edit]
[-] Cdn_Highwinds_Widget_View.js
[edit]
[-] PageSpeed_Api.php
[edit]
[-] Cdnfsd_TransparentCDN_Page_View.js
[edit]
[-] Cdnfsd_CloudFront_Page_View.php
[edit]
[-] PageSpeed_Page.php
[edit]
[-] Generic_WidgetSpreadTheWord.js
[edit]
[-] Minify_ConfigLabels.php
[edit]
[-] Extensions_Plugin_Admin.php
[edit]
[-] Minify_Environment_LiteSpeed.php
[edit]
[-] Generic_Plugin_WidgetForum.php
[edit]
[-] Cdn_Page.php
[edit]
[-] w3-total-cache.php
[edit]
[-] Cache_File_Cleaner_Generic_HardDelete.php
[edit]
[-] Generic_WidgetBoldGrid_View.php
[edit]
[-] Extension_CloudFlare_Popup.php
[edit]
[-] PgCache_ConfigLabels.php
[edit]
[-] Cdnfsd_LimeLight_Page.php
[edit]
[-] ConfigCache.php
[edit]
[-] CdnEngine_CloudFront.php
[edit]
[-] Generic_Plugin_AdminNotifications.php
[edit]
[-] Generic_AdminNotes.php
[edit]
[-] Support_Page.php
[edit]
[-] Util_WpFile_FilesystemOperationException.php
[edit]
[-] UsageStatistics_Page_ObjectCacheLog_View.php
[edit]
[-] Cdnfsd_CacheFlush.php
[edit]
[-] PageSpeed_Page_View.php
[edit]
[-] BrowserCache_Environment.php
[edit]
[-] Extension_CloudFlare_View_Dashboard.js
[edit]
[-] UsageStatistics_Plugin.php
[edit]
[-] UserExperience_Emoji_Extension.php
[edit]
[-] DbCache_WpdbInjection_QueryCaching.php
[edit]
[-] SetupGuide_Plugin_Admin.php
[edit]
[-] Cdn_Highwinds_Widget_View.css
[edit]
[-] Extension_Genesis_Plugin_Admin.php
[edit]
[-] Cdnfsd_CloudFront_Popup.php
[edit]
[-] Cdn_LimeLight_Page_View.php
[edit]
[-] Extension_NewRelic_Widget_View_Apm.php
[edit]
[-] Support_AdminActions.php
[edit]
[-] Root_AdminActivation.php
[edit]
[-] PageSpeed_Data.php
[edit]
[-] Cache_Memcached.php
[edit]
[-] UsageStatistics_GeneralPage.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_WPGoogleMaps.php
[edit]
[-] UsageStatistics_StorageReader.php
[edit]
[+]
lib
[-] Minify_AutoJs.php
[edit]
[-] Cache_Wincache.php
[edit]
[-] CdnEngine_Mirror_StackPath2.php
[edit]
[-] Generic_Plugin_Admin.php
[edit]
[-] PageSpeed_Page_View.js
[edit]
[-] Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php
[edit]
[-] Extension_FragmentCache_Page.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Distributions.php
[edit]
[-] Generic_GeneralPage_View_ShowSupportUs.js
[edit]
[-] Cdnfsd_StackPath2_Popup_View_Success.php
[edit]
[-] CdnEngine.php
[edit]
[-] SystemOpCache_Core.php
[edit]
[-] Extension_Wpml_Plugin_Admin.php
[edit]
[-] BrowserCache_Environment_Apache.php
[edit]
[-] Cdn_StackPath_Page_View.js
[edit]
[-] Cdn_StackPath2_Popup_View_Stacks.php
[edit]
[-] Cdn_RackSpaceCdn_Page_View.php
[edit]
[-] ObjectCache_WpObjectCache.php
[edit]
[-] BrowserCache_Core.php
[edit]
[-] w3-total-cache-old-php.php
[edit]
[-] Extension_ImageService_Plugin_Admin.js
[edit]
[-] Extension_CloudFlare_Page_View.js
[edit]
[-] Extension_NewRelic_Page.php
[edit]
[-] Generic_GeneralPage_View_ShowEdge.js
[edit]
[-] Extensions_Util.php
[edit]
[-] Util_Request.php
[edit]
[-] Util_Content.php
[edit]
[-] Extension_Swarmify_Widget_View.css
[edit]
[-] Cache_Redis.php
[edit]
[-] CdnEngine_Mirror_Highwinds.php
[edit]
[-] BrowserCache_Plugin.php
[edit]
[-] Cdnfsd_StackPath2_Popup_View_Stacks.php
[edit]
[-] Util_WpFile.php
[edit]
[-] Generic_Page_PurgeLog.php
[edit]
[-] UsageStatistics_Page_View.css
[edit]
[-] Cdnfsd_StackPath2_Page_View.js
[edit]
[-] PgCache_Environment.php
[edit]
[-] Enterprise_SnsBase.php
[edit]
[-] UsageStatistics_AdminActions.php
[edit]
[-] Config.php
[edit]
[-] Cdnfsd_Util.php
[edit]
[-] Util_Environment.php
[edit]
[-] Enterprise_Dbcache_WpdbInjection_Cluster.php
[edit]
[-] PageSpeed_Widget_View_FromApi.php
[edit]
[-] CacheGroups_Plugin_Admin.php
[edit]
[-] Base_Page_Settings.php
[edit]
[-] UsageStatistics_Source_ObjectCacheLog.php
[edit]
[-] CdnEngine_Mirror.php
[edit]
[-] Cache_File.php
[edit]
[-] UsageStatistics_Widget_View_Disabled.php
[edit]
[-] Util_Http.php
[edit]
[-] Generic_WidgetSpreadTheWord_Plugin.php
[edit]
[-] Extension_ImageService_Api.php
[edit]
[-] Extension_Swarmify_Plugin.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Create.php
[edit]
[-] CdnEngine_Mirror_Att.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Intro.php
[edit]
[-] Cdnfsd_StackPath_Popup_View_Success.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Services.php
[edit]
[-] CdnEngine_S3.php
[edit]
[-] Generic_WidgetBoldGrid_AdminActions.php
[edit]
[-] Util_WpFile_FilesystemMkdirException.php
[edit]
[-] DbCache_ConfigLabels.php
[edit]
[-] Cache_File_Generic.php
[edit]
[-] Cdn_StackPath_Page_View.php
[edit]
[-] Cdn_StackPath_Popup_View_Intro.php
[edit]
[-] Cdnfsd_TransparentCDN_Page_View.php
[edit]
[-] Cdnfsd_TransparentCDN_Page.php
[edit]
[-] PgCache_Flush.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Intro.php
[edit]
[-] Extension_CloudFlare_Plugin.php
[edit]
[-] Extension_NewRelic_GeneralPage.php
[edit]
[-] PgCache_QsExempts.php
[edit]
[-] Varnish_Flush.php
[edit]
[-] Cdnfsd_CloudFront_Engine.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php
[edit]
[-] Cache_Xcache.php
[edit]
[-] Cdnfsd_CloudFront_Page.php
[edit]
[-] Dispatcher.php
[edit]
[-] Minify_GeneralPage_View_ShowHelpForce.js
[edit]
[-] Cdn_StackPath_Widget.php
[edit]
[-] Cdn_Highwinds_Page.php
[edit]
[-] Generic_Plugin_Admin_View_Faq.php
[edit]
[-] Cdnfsd_LimeLight_Popup_View_Intro.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Created.php
[edit]
[-] Cache_Memcache.php
[edit]
[-] CdnEngine_Mirror_Edgecast.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page_View.js
[edit]
[-] Extension_CloudFlare_Cdn_Page_View.php
[edit]
[-] UsageStatistics_Plugin_Admin.php
[edit]
[-] Cdn_LimeLight_Popup_View_Success.php
[edit]
[-] CacheFlush.php
[edit]
[-] BrowserCache_Environment_LiteSpeed.php
[edit]
[-] Generic_Environment.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php
[edit]
[-] Util_UsageStatistics.php
[edit]
[-] Cdn_StackPath2_Popup_View_Success.php
[edit]
[+]
ini
[-] Mobile_Base.php
[edit]
[-] PageSpeed_Widget_View.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Success.php
[edit]
[-] Extension_NewRelic_Popup.php
[edit]
[-] Generic_WidgetServices_View.php
[edit]
[-] Cdn_Environment_Nginx.php
[edit]
[-] Cdn_RackSpace_Api_CaCert-example.pem
[edit]
[-] Extension_ImageService_Plugin.php
[edit]
[-] Extension_Swarmify_Plugin_Admin.php
[edit]
[-] BrowserCache_Page.php
[edit]
[-] Extension_NewRelic_Api.php
[edit]
[-] Extension_Amp_Page_View.php
[edit]
[-] Minify_Page.php
[edit]
[-] Enterprise_CacheFlush_MakeSnsEvent.php
[edit]
[-] Cdnfsd_StackPath2_Popup_View_Intro.php
[edit]
[-] Mobile_UserAgent.php
[edit]
[-] Cdnfsd_Plugin.php
[edit]
[-] Extension_NewRelic_AdminActions.php
[edit]
[+]
languages
[-] DbCache_WpdbBase.php
[edit]
[-] UserExperience_Plugin_Admin.php
[edit]
[-] Cdn_Page_View_Header.php
[edit]
[-] Extension_ImageService_Page_View.php
[edit]
[-] Cdn_RackSpaceCdn_Popup.php
[edit]
[-] Util_WpFile_FilesystemChmodException.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Distribution.php
[edit]
[-] PgCache_Plugin_Admin.php
[edit]
[-] Cdn_GoogleDrive_Popup_AuthReturn_View.php
[edit]
[-] BrowserCache_Page_View_SectionSecurity.php
[edit]
[-] Extension_FragmentCache_Plugin_Admin.php
[edit]
[-] index.html
[edit]
[-] Cdn_Core_Admin.php
[edit]
[-] Util_ConfigLabel.php
[edit]
[-] Extension_CloudFlare_Widget.php
[edit]
[-] Cdn_Environment.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page.php
[edit]
[-] Cdn_StackPath_Widget_View.css
[edit]
[-] UsageStatistics_Source_Wpdb.php
[edit]
[-] UserExperience_Page_View.php
[edit]
[-] Util_WpmuBlogmap.php
[edit]
[-] CdnEngine_Mirror_Akamai.php
[edit]
[-] Generic_Page_Dashboard.php
[edit]
[-] Cache_Apc.php
[edit]
[-] Extension_Amp_Plugin.php
[edit]
[-] ObjectCache_WpObjectCache_Regular.php
[edit]
[-] Cdnfsd_StackPath_Popup.php
[edit]
[-] Generic_ConfigLabels.php
[edit]
[-] Cdn_GoogleDrive_Page_View.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php
[edit]
[-] FeatureShowcase_Plugin_Admin.php
[edit]
[-] Extension_NewRelic_Page_View_Apm.php
[edit]
[-] Root_AdminMenu.php
[edit]
[-] Cdn_StackPath_Widget_View_Authorized.php
[edit]
[-] DbCache_WpdbInjection.php
[edit]
[+]
vendor
[-] Util_Rule.php
[edit]
[-] Cdn_Highwinds_Popup.php
[edit]
[-] UsageStatistics_Widget_View.php
[edit]
[-] UserExperience_LazyLoad_Page_View.php
[edit]
[-] press.txt
[edit]
[-] Cdnfsd_LimeLight_Page_View.js
[edit]
[-] Cdnfsd_LimeLight_Api.php
[edit]
[-] Mobile_Referrer.php
[edit]
[-] Minify_Core.php
[edit]
[-] BrowserCache_Page_View_QuickReference.php
[edit]
[-] Cdn_StackPath2_Page_View.php
[edit]
[-] Cdn_StackPath2_Widget_View_Unauthorized.php
[edit]
[-] DbCache_Plugin.php
[edit]
[-] Extension_FragmentCache_WpObjectCache.php
[edit]
[-] UsageStatistics_Page_PageCacheRequests_View.php
[edit]
[-] ConfigKeys.php
[edit]
[-] Extension_CloudFlare_Popup_View_Zones.php
[edit]
[-] UserExperience_GeneralPage_View.php
[edit]
[-] Extension_Genesis_Page.php
[edit]
[-] CdnEngine_Mirror_StackPath.php
[edit]
[-] Generic_WidgetCommunity.php
[edit]
[-] Extension_FragmentCache_GeneralPage_View.php
[edit]
[-] Cdn_LimeLight_Popup.php
[edit]
[-] Minify_GeneralPage_View_ShowHelp.js
[edit]
[-] Util_Theme.php
[edit]
[-] Extension_CloudFlare_Widget_View.css
[edit]
[-] Util_PageSpeed.php
[edit]
[-] ConfigStateNote.php
[edit]
[-] Minify_Extract.php
[edit]
[-] Extension_FragmentCache_Page_View.php
[edit]
[-] Extension_FragmentCache_Plugin.php
[edit]
[-] Cache_Nginx_Memcached.php
[edit]
[-] Generic_WidgetServices.php
[edit]
[-] Cdn_Page_View_Fsd_HeaderActions.php
[edit]
[-] Minify_AutoCss.php
[edit]
[-] Extension_CloudFlare_SettingsForUi.php
[edit]
[-] Generic_WidgetBoldGrid_View.js
[edit]
[-] Cdn_Highwinds_Api.php
[edit]
[-] Extension_WordPressSeo_Plugin.php
[edit]
[-] Cdnfsd_LimeLight_Popup_View_Success.php
[edit]
[-] Extension_NewRelic_Widget.php
[edit]
[-] Extension_CloudFlare_Widget_View.php
[edit]
[-] UsageStatistics_Page.php
[edit]
[-] Extension_Genesis_Page_View.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup.php
[edit]
[-] Generic_Page_About.php
[edit]
[-] CacheGroups_Plugin_Admin_View.js
[edit]
[+]
wp-content
[-] Cdn_RackSpaceCloudFiles_Popup_View_Containers.php
[edit]
[-] Util_WpFile_FilesystemCopyException.php
[edit]
[-] Licensing_AdminActions.php
[edit]
[-] Extension_Genesis_Plugin.php
[edit]
[-] Cdn_Plugin.php
[edit]
[-] CdnEngine_S3_Compatible.php
[edit]
[-] Generic_Plugin_WidgetNews.php
[edit]
[-] Cdn_GoogleDrive_Page_View.js
[edit]
[-] CdnEngine_Mirror_LimeLight.php
[edit]
[-] Cache_File_Cleaner.php
[edit]
[-] Cache_Memcached_Stats.php
[edit]
[-] Cdn_Plugin_Admin.php
[edit]
[-] Extension_NewRelic_Popup_View_ListApplications.php
[edit]
[-] BrowserCache_Plugin_Admin.php
[edit]
[-] UsageStatistics_GeneralPage_View.php
[edit]
[-] Extension_CloudFlare_Page_View.php
[edit]
[-] CdnEngine_Mirror_CloudFront.php
[edit]
[-] Cdnfsd_StackPath_Page.php
[edit]
[-] Extension_FragmentCache_Core.php
[edit]
[-] Cdn_StackPath2_Page.php
[edit]
[-] Util_AttachToActions.php
[edit]
[-] DbCache_WpdbNew.php
[edit]
[+]
pub
[-] Cdn_StackPath_Popup_View_Zone.php
[edit]
[-] Extensions_Page.php
[edit]
[-] Cdn_LimeLight_Page.php
[edit]
[-] Cdn_RackSpace_Api_Tokens.php
[edit]
[-] Cdn_Util.php
[edit]
[-] Enterprise_SnsServer.php
[edit]
[-] ConfigDbStorage.php
[edit]
[-] UsageStatistics_Sources.php
[edit]
[-] Cdn_RackSpace_Api_Cdn.php
[edit]
[-] Cdnfsd_StackPath_Popup_View_Zone.php
[edit]
[-] Minify_ContentMinifier.php
[edit]
[-] UsageStatistics_Page_View_Disabled.php
[edit]
[-] ConfigCompiler.php
[edit]
[-] CacheGroups_Plugin_Admin_View.php
[edit]
[-] Cdnfsd_StackPath2_Page.php
[edit]
[-] Cache_Apcu.php
[edit]
[-] Util_DebugPurgeLog_Reader.php
[edit]
[-] Extension_NewRelic_Widget_View_NotConfigured.php
[edit]
[-] Cdn_GoogleDrive_AdminActions.php
[edit]
[-] Util_Admin.php
[edit]
[-] Cdnfsd_Page_View_Header.php
[edit]
[-] Extension_NewRelic_Widget_View.css
[edit]
[-] Extension_Wpml_Plugin.php
[edit]
[-] Cache_File_Cleaner_Generic.php
[edit]
[-] PageSpeed_Widget_View.css
[edit]
[-] Extension_NewRelic_Popup_View_Intro.php
[edit]
[-] Cdnfsd_StackPath2_Popup_View_Sites.php
[edit]
[-] PgCache_Page.php
[edit]
[-] Cdnfsd_LimeLight_Popup.php
[edit]
[-] UsageStatistics_Source_PageCacheLog.php
[edit]
[-] Extension_NewRelic_AdminNotes.php
[edit]
[-] Support_Page_View_DoneContent.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page_View.php
[edit]
[-] Generic_Page_PurgeLog_View.php
[edit]
[-] Generic_AdminActions_Config.php
[edit]
[-] ObjectCache_Environment.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Intro.php
[edit]
[-] SystemOpCache_GeneralPage_View.php
[edit]
[-] UsageStatistics_Page_View_NoDebugMode.php
[edit]
[-] PgCache_ContentGrabber.php
[edit]
[-] Cdn_StackPath2_Api.php
[edit]
[-] Minify_Environment.php
[edit]
[-] Cdn_GoogleDrive_Popup_AuthReturn.php
[edit]
[-] Cdn_GeneralPage_View.php
[edit]
[-] DbCache_Wpdb.php
[edit]
[-] SystemOpCache_Plugin_Admin.php
[edit]
[-] Cdn_LimeLight_Page_View.js
[edit]
[-] UsageStatistics_Page_View_Free.php
[edit]
[-] Util_WpFile_FilesystemRmdirException.php
[edit]
[-] Util_File.php
[edit]
[-] Util_WpFile_FilesystemRmException.php
[edit]
[-] Root_Loader.php
[edit]
[-] Cdnfsd_StackPath_Popup_View_Intro.php
[edit]
[-] Generic_AdminActions_Test.php
[edit]
[-] Util_Environment_Exception.php
[edit]
[-] Util_Activation.php
[edit]
[-] Cdnfsd_GeneralPage_View.php
[edit]
[-] w3-total-cache-api.php
[edit]
[-] Cdn_RackSpace_Api_CloudFilesCdn.php
[edit]
[-] Licensing_Plugin_Admin.php
[edit]
[-] PageSpeed_Page_View.css
[edit]
[-] BrowserCache_Environment_Nginx.php
[edit]
[-] ModuleStatus.php
[edit]
[-] Cdn_StackPath2_Page_View.js
[edit]
[-] Licensing_Core.php
[edit]
[-] Cdn_ConfigLabels.php
[edit]
[-] Extension_CloudFlare_AdminActions.php
[edit]
[-] Cdnfsd_StackPath2_Engine.php
[edit]
[-] Cdn_StackPath_Api.php
[edit]
[-] Cdn_Highwinds_Popup_View_Intro.php
[edit]
[-] DbCache_Page.php
[edit]
[-] Extensions_AdminActions.php
[edit]
[-] SystemOpCache_AdminActions.php
[edit]
[-] ObjectCache_Plugin_Admin.php
[edit]
[-] Cdnfsd_StackPath2_Popup.php
[edit]
[-] Cdn_GoogleDrive_Page.php
[edit]
[-] Cdn_StackPath_Popup_View_Zones.php
[edit]
[-] Extension_FragmentCache_Environment.php
[edit]
[-] PageSpeed_Page_View_FromAPI.php
[edit]
[-] FeatureShowcase_Plugin_Admin_View.php
[edit]
[-] UserExperience_Page.php
[edit]
[-] ConfigState.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Regions.php
[edit]
[-] Util_WpFile_FilesystemModifyException.php
[edit]
[-] Cdn_LimeLight_Popup_View_Intro.php
[edit]
[-] Cdn_Core.php
[edit]
[-] PageSpeed_Widget_View.js
[edit]
[-] Generic_Plugin_AdminRowActions.php
[edit]
[-] Cdnfsd_Plugin_Admin.php
[edit]
[-] Util_Bus.php
[edit]
[-] Util_WpFile_FilesystemWriteException.php
[edit]
[-] Generic_WidgetBoldGrid.php
[edit]
[-] Generic_AdminActions_Default.php
[edit]
[-] Mobile_Redirect.php
[edit]
[-] UsageStatistics_Page_DbRequests_View.php
[edit]
[-] Cdn_RackSpaceCdn_AdminActions.php
[edit]
[-] Cdnfsd_StackPath_Popup_View_Zones.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php
[edit]
[-] Extension_NewRelic_Widget_View.js
[edit]
[-] Generic_AdminActions_Flush.php
[edit]
[-] Cdnfsd_StackPath_Page_View.js
[edit]
[-] UserExperience_LazyLoad_Mutator.php
[edit]
[-] CdnEngine_RackSpaceCloudFiles.php
[edit]
[-] CdnEngine_Azure.php
[edit]
[-] Generic_Faq.php
[edit]
[-] UsageStatistics_StorageWriter.php
[edit]
[-] Cdn_Highwinds_Page_View.js
[edit]
[-] Extension_NewRelic_Plugin.php
[edit]
[-] Extension_Swarmify_Core.php
[edit]
[-] Support_Page_View_PageContent.php
[edit]
[-] Generic_WidgetBoldGrid_Logo.svg
[edit]
[-] Root_Environment.php
[edit]
[-] Extension_FragmentCache_GeneralPage.php
[edit]
[-] CdnEngine_Ftp.php
[edit]
[-] Cdnfsd_Core.php
[edit]
[-] Extension_CloudFlare_Plugin_Admin.php
[edit]
[-] Cdn_StackPath_Popup.php
[edit]
[-] CdnEngine_Mirror_RackSpaceCdn.php
[edit]
[-] Minify_Plugin_Admin.php
[edit]
[-] Generic_Plugin_AdminCompatibility.php
[edit]
[-] CdnEngine_Mirror_Cotendo.php
[edit]
[-] Cdn_StackPath2_Widget_View_Authorized.php
[edit]
[-] Cdn_RackSpaceCdn_Page.php
[edit]
[-] Cdn_StackPath2_Widget_View.js
[edit]
[-] Extension_CloudFlare_GeneralPage_View.php
[edit]
[-] Cdn_StackPath_Widget_View_Unauthorized.php
[edit]
[-] UsageStatistics_Page_View.js
[edit]
[-] Cdn_Highwinds_Widget.php
[edit]
[-] Cdn_StackPath2_Popup.php
[edit]
[-] Extension_CloudFlare_Popup_View_Intro.php
[edit]
[-] UsageStatistics_Sources_Memcached.php
[edit]
[-] Cdn_RackSpaceCdn_Page_View.js
[edit]
[-] Cdn_StackPath2_Widget_View.css
[edit]
[-] Extension_NewRelic_Popup_View.js
[edit]
[-] Cdnfsd_CloudFront_Page_View.js
[edit]
[-] ObjectCache_Plugin.php
[edit]
[-] DbCache_WpdbLegacy.php
[edit]
[-] DbCache_Core.php
[edit]
[-] UsageStatistics_Widget_View.js
[edit]
[-] Extension_Swarmify_Widget_View_NotConfigured.php
[edit]
[-] Extension_Swarmify_AdminActions.php
[edit]
[-] Extension_NewRelic_Plugin_Admin.php
[edit]
[-] Extension_FragmentCache_Api.php
[edit]
[-] Generic_WidgetSpreadTheWord_View.php
[edit]
[-] Util_Debug.php
[edit]
[-] PageSpeed_Instructions.php
[edit]
[-] Cdn_Highwinds_Popup_View_SelectHost.php
[edit]
[-] Minify_HelpPopup_View.php
[edit]
[-] Util_Mime.php
[edit]
[-] Extension_NewRelic_Core.php
[edit]
[-] Cdn_AdminNotes.php
[edit]
[-] UserExperience_OEmbed_Extension.php
[edit]
[-] Cdnfsd_LimeLight_Page_View.php
[edit]
[-] Extension_Amp_Plugin_Admin.php
[edit]
[-] Util_PageUrls.php
[edit]
[-] Cache_Eaccelerator.php
[edit]
[-] UserExperience_Plugin_Jquery.php
[edit]
[-] ObjectCache_Page.php
[edit]
[-] CdnEngine_Base.php
[edit]
[-] Cdn_StackPath_Popup_View_Success.php
[edit]
[-] Extension_ImageService_Plugin_Admin.php
[edit]
[-] Cdnfsd_StackPath_Engine.php
[edit]
[-] Cdn_StackPath2_Popup_View_Sites.php
[edit]
[-] Cdn_StackPath_Widget_View.js
[edit]
[-] Cdn_StackPath_Page.php
[edit]
[-] Cdn_Highwinds_Page_View.php
[edit]
[-] Cdn_Highwinds_Widget_View.php
[edit]
[-] Generic_Page_Dashboard_View.css
[edit]
[-] Generic_Page_General.php
[edit]
[-] Extension_ImageService_Cron.php
[edit]
[-] Generic_Page_Install.php
[edit]
[-] UsageStatistics_Core.php
[edit]
[-] Varnish_Plugin.php
[edit]
[-] UserExperience_LazyLoad_Plugin.php
[edit]
[-] Cdn_Highwinds_Widget_View_NotConfigured.php
[edit]
[-] PgCache_Plugin.php
[edit]
[-] Util_Ui.php
[edit]
[-] Extension_Swarmify_Page.php
[edit]
[-] Cdnfsd_StackPath2_Page_View.php
[edit]
[-] Extension_NewRelic_Service.php
[edit]
[-] Cli.php
[edit]
[-] Cdn_AdminActions.php
[edit]
[-] Extension_ImageService_Environment.php
[edit]
[-] Cdn_Environment_LiteSpeed.php
[edit]
[-] UsageStatistics_Page_View_Ad.php
[edit]
[-] Extension_CloudFlare_Api.php
[edit]
[-] Cdnfsd_LimeLight_Engine.php
[edit]
[-] Extension_CloudFlare_Widget_Logo.png
[edit]
[-] Generic_Plugin.php
[edit]
[-] Util_Widget.php
[edit]
[-] UserExperience_LazyLoad_Mutator_Picture.php
[edit]
[-] LICENSE
[edit]
[-] Cdn_StackPath2_Widget.php
[edit]
[-] BrowserCache_ConfigLabels.php
[edit]
[-] Cache.php
[edit]
[-] Extension_Swarmify_Widget.php
[edit]
[-] Cdn_CacheFlush.php
[edit]
[-] ObjectCache_ConfigLabels.php
[edit]
[-] Cdnfsd_TransparentCDN_Engine.php
[edit]
[+]
inc
[-] Minify_MinifiedFileRequestHandler.php
[edit]
[-] Cdn_RackSpace_Api_CloudFiles.php
[edit]
[-] ConfigUtil.php
[edit]