DmitryDulepov\Realurl\Decoder\UrlDecoder::isSpeakingUrl PHP Method

isSpeakingUrl() protected method

Checks if the current URL is a speaking URL.
protected isSpeakingUrl ( ) : boolean
return boolean
    protected function isSpeakingUrl()
    {
        return $this->siteScript && substr($this->siteScript, 0, 9) !== 'index.php' && substr($this->siteScript, 0, 1) !== '?' && $this->siteScript !== 'favicon.ico' && (!$this->configuration->get('init/respectSimulateStaticURLs') || !preg_match('/^[a-z0-9\\-]+\\.(\\d+)(\\.\\d+)?\\.html/i', $this->siteScript));
    }