'loggedout', 'msg' => sprintf( __( 'You have been logged out. Please %slogin again%s.', 'order-tracking' ), '', '' ), ) ); } /** * Handle ajax requests where an invalid nonce is passed with the request * @since 3.0.17 */ public static function bad_nonce_ajax() { wp_send_json_error( array( 'error' => 'badnonce', 'msg' => __( 'The request has been rejected because it does not appear to have come from this site.', 'order-tracking' ), ) ); } /** * Escapes PHP data being passed to JS, recursively * @since 3.1.0 */ public static function escape_js_recursive( $values ) { $return_values = array(); foreach ( (array) $values as $key => $value ) { if ( is_array( $value ) ) { $value = ewdotpHelper::escape_js_recursive( $value ); } elseif ( ! is_scalar( $value ) ) { continue; } else { $value = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); } $return_values[ $key ] = $value; } return $return_values; } } }