芝麻web文件管理V1.00
编辑当前文件:/home/paymbalq/public_html/wp-content/plugins/w3-total-cache/Support_Page.php
$url, 'email' => get_bloginfo( 'admin_email' ), 'first_name' => $u->first_name, 'last_name' => $u->last_name, 'form_hash' => $w3tc_support_form_hash, 'field_name' => $w3tc_support_field_name, 'field_value' => $w3tc_support_field_value, 'postprocess' => rawurlencode( rawurlencode( Util_Ui::admin_url( wp_nonce_url( 'admin.php', 'w3tc' ) . '&page=w3tc_support&done=1' ) ) ), ) ); } /** * Displays the options page for W3TC support. * * This method renders the appropriate content based on the request parameters. * If a "done" parameter is detected, it processes the request and displays * the post-process content. Otherwise, it loads the main support page content. * * @return void */ public function options() { if ( ! empty( Util_Request::get_string( 'done' ) ) ) { $postprocess_url = 'admin.php?page=w3tc_support&w3tc_support_send_details' . '&_wpnonce=' . rawurlencode( Util_Request::get_string( '_wpnonce' ) ); foreach ( $_GET as $p => $v ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended if ( 'page' !== $p && '_wpnonce' !== $p && 'done' !== $p ) { $postprocess_url .= '&' . rawurlencode( $p ) . '=' . rawurlencode( Util_Request::get_string( $p ) ); } } // terms accepted as a part of form. Licensing_Core::terms_accept(); include W3TC_DIR . '/Support_Page_View_DoneContent.php'; } else { include W3TC_DIR . '/Support_Page_View_PageContent.php'; } } }