CAS_Client::_htmlFilterOutput PHP Method

_htmlFilterOutput() private method

Used by CAS_Client::PrintHTMLHeader() and CAS_Client::printHTMLFooter().
private _htmlFilterOutput ( string $str ) : void
$str string the string to filter and output
return void
    private function _htmlFilterOutput($str)
    {
        $str = str_replace('__CAS_VERSION__', $this->getServerVersion(), $str);
        $str = str_replace('__PHPCAS_VERSION__', phpCAS::getVersion(), $str);
        $str = str_replace('__SERVER_BASE_URL__', $this->_getServerBaseURL(), $str);
        echo $str;
    }
CAS_Client