Prado\TApplication::getConfigurationFileExt PHP Метод

getConfigurationFileExt() публичный Метод

public getConfigurationFileExt ( ) : string
Результат string the application configuration type. default is 'xml'
    public function getConfigurationFileExt()
    {
        if ($this->_configFileExt === null) {
            switch ($this->_configType) {
                case TApplication::CONFIG_TYPE_PHP:
                    $this->_configFileExt = TApplication::CONFIG_FILE_EXT_PHP;
                    break;
                default:
                    $this->_configFileExt = TApplication::CONFIG_FILE_EXT_XML;
            }
        }
        return $this->_configFileExt;
    }