Phrozn\Site\View\OutputPath\Base::getInputFileWithoutExt PHP Method

getInputFileWithoutExt() protected method

Extract input file from view (remove extension)
protected getInputFileWithoutExt ( ) : string
return string
    protected function getInputFileWithoutExt()
    {
        $info = pathinfo($this->getView()->getInputFile());
        return $info['dirname'] . DIRECTORY_SEPARATOR . ($info['filename'] ?: $info['basename']);
        // allow dot files
    }