Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
wp-content
/
plugins
/
wp-rocket-1-nov
/
inc
/
Engine
/
Preload
/
Controller
:
CheckExcludedTrait.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WP_Rocket\Engine\Preload\Controller; trait CheckExcludedTrait { /** * Add new pattern of excluded uri. * * @param array $regexes regexes used to exclude urls. * @return array */ public function add_cache_reject_uri_to_excluded( array $regexes ): array { $user_added_cache_reject_uri = (array) get_rocket_option( 'cache_reject_uri', [] ); if ( count( $user_added_cache_reject_uri ) === 0 ) { return $regexes; } $altered_user_added_cache_reject_uri = implode( '$|', $user_added_cache_reject_uri ); $user_added_cache_reject_uri = implode( '|', $user_added_cache_reject_uri ); $cache_reject_uri = get_rocket_cache_reject_uri(); $regexes[] = str_replace( $user_added_cache_reject_uri . '|', $altered_user_added_cache_reject_uri . '$|', $cache_reject_uri ); return $regexes; } /** * Check if the url is excluded by using a filter. * * @param string $url url to check. * @return bool */ protected function is_excluded_by_filter( string $url ): bool { global $wp_rewrite; $pagination_regex = "/$wp_rewrite->pagination_base/\d+"; $url = strtok( $url, '?' ); $url = user_trailingslashit( $url ); /** * Regex to exclude URI from preload. * * @param string[] $regexes Regexes to check. * @param string $url Current preloading url. */ $regexes = (array) apply_filters( 'rocket_preload_exclude_urls', [ $pagination_regex ], $url ); if ( empty( $regexes ) ) { return false; } $regexes = array_unique( $regexes ); foreach ( $regexes as $regex ) { if ( ! is_string( $regex ) ) { continue; } $regex = user_trailingslashit( $regex ); if ( preg_match( "@$regex$@m", $url ) ) { return true; } } return false; } }