xajaxCallableObject::call PHP Method

call() public method

Call the specified method of the object being referenced using the specified array of arguments. sMethod - (string): The name of the method to call. aArgs - (array): The arguments to pass to the method.
public call ( $sMethod, $aArgs )
    public function call($sMethod, $aArgs)
    {
        $objResponseManager = xajaxResponseManager::getInstance();
        $objResponseManager->append(call_user_func_array(array($this->obj, $sMethod), $aArgs));
    }