Neos\Flow\ObjectManagement\ObjectManager::getSettingsByPath PHP Метод

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

Returns the an array of package settings or a single setting value by the given path.
public getSettingsByPath ( array $settingsPath ) : mixed
$settingsPath array Path to the setting(s) as an array, for example array('Neos', 'Flow', 'persistence', 'backendOptions')
Результат mixed Either an array of settings or the value of a single setting
    public function getSettingsByPath(array $settingsPath)
    {
        return Arrays::getValueByPath($this->allSettings, $settingsPath);
    }