IXR_Server::__construct() – PHP5 constructor.

You appear to be a bot. Output may be restricted

Description

PHP5 constructor.

Usage

IXR_Server::__construct( $callbacks, $data, $wait );

Parameters

$callbacks
( mixed ) optional
$data
( mixed ) optional
$wait
( mixed ) optional

Returns

void

Source

File name: wordpress/wp-includes/IXR/class-IXR-server.php
Lines:

1 to 11 of 11
    function __construct( $callbacks = false, $data = false, $wait = false )
    {
        $this->IXR_Server::setCapabilities();
        if ($callbacks) {
            $this->callbacks = $callbacks;
        }
        $this->IXR_Server::setCallbacks();
        if (!$wait) {
            $this->IXR_Server::serve($data);
        }
    }
 

 View on GitHub View on Trac