xxx::_processRequest PHP Method

_processRequest() private method

Post validation functions
private _processRequest ( $command = '' )
    private function _processRequest($command = '')
    {
        $sequence = array(0 => 'ver ver="3.4"', 1 => 'login user="' . $this->_dataObject->data->username . '" domain="' . $this->_dataObject->data->authdomain . '" password="' . $this->_dataObject->data->password . '"', 2 => 'xxx' . $command, 3 => 'quit');
        $tucRes = $this->makeCall($sequence);
        $arrayResult = $this->parseResults($tucRes);
        // Results
        $this->resultRaw = $arrayResult;
        $this->resultFormatted = convertArray2Formatted($this->_formatHolder, $this->resultRaw);
        $this->resultSuccess = $this->makeCheck($arrayResult);
    }