You are here

protected function FarmSettingsFarmInfoForm::getEditableConfigNames in farmOS 2.x

Gets the configuration names that will be editable.

Return value

array An array of configuration object names that are editable if called in conjunction with the trait's config() method.

Overrides ConfigFormBaseTrait::getEditableConfigNames

File

modules/core/settings/src/Form/FarmSettingsFarmInfoForm.php, line 58

Class

FarmSettingsFarmInfoForm
Form for configuring basic farm info.

Namespace

Drupal\farm_settings\Form

Code

protected function getEditableConfigNames() {
  return [
    'system.date',
    'system.site',
  ];
}