IXR_IntrospectionServer::addCallbackpublicWP 1.0

Method of the class: IXR_IntrospectionServer{}

No Hooks.

Returns

null. Nothing (null).

Usage

$IXR_IntrospectionServer = new IXR_IntrospectionServer();
$IXR_IntrospectionServer->addCallback( $method, $callback, $args, $help );
$method(required)
.
$callback(required)
.
$args(required)
.
$help(required)
.

IXR_IntrospectionServer::addCallback() code WP 6.8.1

function addCallback($method, $callback, $args, $help)
{
    $this->callbacks[$method] = $callback;
    $this->signatures[$method] = $args;
    $this->help[$method] = $help;
}