芝麻web文件管理V1.00
编辑当前文件:/home/dcqnetm/icbs-v2/wp-content/plugins/better-search-replace/includes/class-bsr-utils.php
%s', esc_url( $url ), esc_html( $text ) ); } /** * Generate Better Search Replace site URL with correct UTM tags. * * @param string $path * @param array $args * @param string $hash * * @return string */ public static function bsr_url( $path, $args = array(), $hash = '' ) { $args = wp_parse_args( $args, array( 'utm_medium' => 'insideplugin' ) ); $args = array_map( 'urlencode', $args ); $url = trailingslashit( self::BSR_URL ) . ltrim( $path, '/' ); $url = add_query_arg( $args, $url ); if ( $hash ) { $url .= '#' . $hash; } return $url; } /** * Generate WP Engine site URL with correct UTM tags. * * @param string $path * @param array $args * @param string $hash * * @return string */ public static function wpe_url( $path = '', $args = array(), $hash = '' ) { $args = wp_parse_args( $args, [ 'utm_medium' => 'referral', 'utm_campaign' => 'bx_prod_referral', ] ); $args = array_map( 'urlencode', $args ); $url = trailingslashit( self::WPE_URL ) . ltrim( $path, '/' ); $url = add_query_arg( $args, $url ); if ( $hash ) { $url .= '#' . $hash; } return $url; } /** * Get the plugin page url * * @return string */ public static function plugin_page_url() { return menu_page_url( 'better-search-replace', false ); } /** * Is current admin screen for bsr. * * @return bool */ public static function is_bsr_screen() { $screen = get_current_screen(); return $screen->base === 'tools_page_better-search-replace'; } /** * Ensures intent by verifying that a user was referred from another admin * page with the correct security nonce, and that user has the capability * level to use the plugin. * * @param int|string $action The nonce action. * @param string $query_arg Key to check for nonce in `$_REQUEST`. * * @return bool */ public static function check_admin_referer( $action, $query_arg ) { return check_admin_referer( $action, $query_arg ) && bsr_enabled_for_user(); } }