Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/wp-includes/IXR
NameTypeSizeActions
📁 .. Folder -
📄 class-IXR-base64.php File 414
Edit Download
📄 class-IXR-client.php File 4787
Edit Download
📄 class-IXR-clientmulticall.php File 1263
Edit Download
📄 class-IXR-date.php File 1691
Edit Download
📄 class-IXR-error.php File 854
Edit Download
📄 class-IXR-introspectionserver.php File 5323
Edit Download
📄 class-IXR-message.php File 8191
Edit Download
📄 class-IXR-request.php File 927
Edit Download
📄 class-IXR-server.php File 6670
Edit Download
📄 class-IXR-value.php File 3790
Edit Download

View File: class-IXR-error.php

<?php

/**
 * IXR_Error
 *
 * @package IXR
 * @since 1.5.0
 */
class IXR_Error
{
    var $code;
    var $message;

	/**
	 * PHP5 constructor.
	 */
    function __construct( $code, $message )
    {
        $this->code = $code;
        $this->message = htmlspecialchars($message);
    }

	/**
	 * PHP4 constructor.
	 */
	public function IXR_Error( $code, $message ) {
		self::__construct( $code, $message );
	}

    function getXml()
    {
        $xml = <<<EOD
<methodResponse>
  <fault>
    <value>
      <struct>
        <member>
          <name>faultCode</name>
          <value><int>{$this->code}</int></value>
        </member>
        <member>
          <name>faultString</name>
          <value><string>{$this->message}</string></value>
        </member>
      </struct>
    </value>
  </fault>
</methodResponse>

EOD;
        return $xml;
    }
}