IXR_IntrospectionServer::addCallback()publicWP 1.0

Method of the class: IXR_IntrospectionServer{}

No Hooks.

Return

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.5.2

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