Nexcessnet_Turpentine_Model_Varnish_Configurator_Abstract::_getCustomIncludeFilename PHP Method

_getCustomIncludeFilename() protected method

Get the name of the custom include VCL file
protected _getCustomIncludeFilename ( $position = '' ) : string
return string
    protected function _getCustomIncludeFilename($position = '')
    {
        $key = 'custom_include_file';
        $key .= $position ? '_' . $position : '';
        return $this->_formatTemplate(Mage::getStoreConfig('turpentine_varnish/servers/' . $key), array('root_dir' => Mage::getBaseDir()));
    }