public static function SettingsForm::getOverrideConfigName in Layout Builder Base 8
Function to get the name of the override config for a property.
Parameters
string $property: The property key.
Return value
string The override config name for a property.
3 calls to SettingsForm::getOverrideConfigName()
- ConfigManagerService::getOverrideOptionsFromPropertyName in src/
ConfigManagerService.php - Get the override options from the config by property.
- SettingsForm::buildForm in src/
Form/ SettingsForm.php - Form constructor.
- SettingsForm::submitForm in src/
Form/ SettingsForm.php - Form submission handler.
File
- src/
Form/ SettingsForm.php, line 109
Class
- SettingsForm
- Class SettingsForm.
Namespace
Drupal\layout_builder_base\FormCode
public static function getOverrideConfigName($property) {
return 'override_' . $property;
}