X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/b3ddbea8a296025a672b3c3ddca158dc51ed8080..caeaf8dc94b5e3f75dc98ec92dc7b76049cdddb6:/wp-includes/class-wp-ajax-response.php?ds=sidebyside diff --git a/wp-includes/class-wp-ajax-response.php b/wp-includes/class-wp-ajax-response.php index 9c225c11..7bed81c7 100644 --- a/wp-includes/class-wp-ajax-response.php +++ b/wp-includes/class-wp-ajax-response.php @@ -13,7 +13,7 @@ class WP_Ajax_Response { * @var array * @access private */ - var $responses = array(); + private $responses = array(); /** * Constructor - Passes args to {@link WP_Ajax_Response::add()}. @@ -24,11 +24,63 @@ class WP_Ajax_Response { * @param string|array $args Optional. Will be passed to add() method. * @return WP_Ajax_Response */ - function __construct( $args = '' ) { + public function __construct( $args = '' ) { if ( !empty($args) ) $this->add($args); } + /** + * Make private properties readable for backwards compatibility. + * + * @since 4.0.0 + * @access public + * + * @param string $name Property to get. + * @return mixed Property. + */ + public function __get( $name ) { + return $this->$name; + } + + /** + * Make private properties settable for backwards compatibility. + * + * @since 4.0.0 + * @access public + * + * @param string $name Property to set. + * @param mixed $value Property value. + * @return mixed Newly-set property. + */ + public function __set( $name, $value ) { + return $this->$name = $value; + } + + /** + * Make private properties checkable for backwards compatibility. + * + * @since 4.0.0 + * @access public + * + * @param string $name Property to check if set. + * @return bool Whether the property is set. + */ + public function __isset( $name ) { + return isset( $this->$name ); + } + + /** + * Make private properties un-settable for backwards compatibility. + * + * @since 4.0.0 + * @access public + * + * @param string $name Property to unset. + */ + public function __unset( $name ) { + unset( $this->$name ); + } + /** * Append to XML response based on given arguments. * @@ -52,7 +104,7 @@ class WP_Ajax_Response { * @param string|array $args Override defaults. * @return string XML response. */ - function add( $args = '' ) { + public function add( $args = '' ) { $defaults = array( 'what' => 'object', 'action' => false, 'id' => '0', 'old_id' => false, @@ -61,33 +113,40 @@ class WP_Ajax_Response { ); $r = wp_parse_args( $args, $defaults ); - extract( $r, EXTR_SKIP ); - $position = preg_replace( '/[^a-z0-9:_-]/i', '', $position ); - if ( is_wp_error($id) ) { + $position = preg_replace( '/[^a-z0-9:_-]/i', '', $r['position'] ); + $id = $r['id']; + $what = $r['what']; + $action = $r['action']; + $old_id = $r['old_id']; + $data = $r['data']; + + if ( is_wp_error( $id ) ) { $data = $id; $id = 0; } $response = ''; - if ( is_wp_error($data) ) { + if ( is_wp_error( $data ) ) { foreach ( (array) $data->get_error_codes() as $code ) { - $response .= "get_error_message($code) . "]]>"; - if ( !$error_data = $data->get_error_data($code) ) + $response .= "get_error_message( $code ) . "]]>"; + if ( ! $error_data = $data->get_error_data( $code ) ) { continue; + } $class = ''; - if ( is_object($error_data) ) { - $class = ' class="' . get_class($error_data) . '"'; - $error_data = get_object_vars($error_data); + if ( is_object( $error_data ) ) { + $class = ' class="' . get_class( $error_data ) . '"'; + $error_data = get_object_vars( $error_data ); } $response .= ""; - if ( is_scalar($error_data) ) { + if ( is_scalar( $error_data ) ) { $response .= ""; - } elseif ( is_array($error_data) ) { - foreach ( $error_data as $k => $v ) + } elseif ( is_array( $error_data ) ) { + foreach ( $error_data as $k => $v ) { $response .= "<$k>"; + } } $response .= ""; @@ -97,15 +156,16 @@ class WP_Ajax_Response { } $s = ''; - if ( is_array($supplemental) ) { - foreach ( $supplemental as $k => $v ) + if ( is_array( $r['supplemental'] ) ) { + foreach ( $r['supplemental'] as $k => $v ) { $s .= "<$k>"; + } $s = "$s"; } - if ( false === $action ) + if ( false === $action ) { $action = $_POST['action']; - + } $x = ''; $x .= ""; // The action attribute in the xml output is formatted like a nonce action $x .= "<$what id='$id' " . ( false === $old_id ? '' : "old_id='$old_id' " ) . "position='$position'>"; @@ -125,14 +185,15 @@ class WP_Ajax_Response { * * @since 2.1.0 */ - function send() { - header('Content-Type: text/xml'); - echo ""; + public function send() { + header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ) ); + echo ""; foreach ( (array) $this->responses as $response ) echo $response; echo ''; - die(); + if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) + wp_die(); + else + die(); } } - -?>