$this->configurationManager->getConfigurationValueByPath('BE/passwordHashing/className'), 'readonly' => true, ]; $options = (array)$this->configurationManager->getConfigurationValueByPath('BE/passwordHashing/options'); foreach ($options as $optionName => $optionValue) { $configurationValues['BE/passwordHashing/options/' . $optionName] = [ 'value' => $optionValue, 'readonly' => true, ]; } $configurationValues['FE/passwordHashing/className'] = [ 'value' => $this->configurationManager->getConfigurationValueByPath('FE/passwordHashing/className'), 'readonly' => true, ]; $options = (array)$this->configurationManager->getConfigurationValueByPath('FE/passwordHashing/options'); foreach ($options as $optionName => $optionValue) { $configurationValues['FE/passwordHashing/options/' . $optionName] = [ 'value' => $optionValue, 'readonly' => true, ]; } return $configurationValues; } }