IXR_Server::__construct( $callbacks = false,  $data = false,  $wait = false )

PHP5 constructor.


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);
        }
    }

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.