IXR_Server::__construct( $callbacks = false, $data = false, $wait = false )
PHP5 constructor.
Contents
Description Description
Source Source
File: wp-includes/IXR/class-IXR-server.php
function __construct( $callbacks = false, $data = false, $wait = false )
{
$this->setCapabilities();
if ($callbacks) {
$this->callbacks = $callbacks;
}
$this->setCallbacks();
if (!$wait) {
$this->serve($data);
}
}
Expand full source code Collapse full source code View on Trac