DmitryDulepov\Realurl\Encoder\UrlEncoder::isTypo3Url PHP Method

isTypo3Url() protected method

Checks if a TYPO3 URL is going to be encoded.
protected isTypo3Url ( ) : boolean
return boolean
    protected function isTypo3Url()
    {
        $prefix = $this->tsfe->absRefPrefix . 'index.php';
        return substr($this->urlToEncode, 0, strlen($prefix)) === $prefix;
    }