IXR_IntrospectionServer::addCallback( $method,  $callback,  $args,  $help )

In this article

Source

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

User Contributed Notes

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