You are here

public function SettingsForm::getEditableConfigNames in CRM Core 8.3

Same name in this branch
  1. 8.3 src/Form/SettingsForm.php \Drupal\crm_core\Form\SettingsForm::getEditableConfigNames()
  2. 8.3 modules/crm_core_user_sync/src/Form/SettingsForm.php \Drupal\crm_core_user_sync\Form\SettingsForm::getEditableConfigNames()
Same name and namespace in other branches
  1. 8 modules/crm_core_user_sync/src/Form/SettingsForm.php \Drupal\crm_core_user_sync\Form\SettingsForm::getEditableConfigNames()

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/crm_core_user_sync/src/Form/SettingsForm.php, line 19

Class

SettingsForm
Configure crm_core_user_sync settings.

Namespace

Drupal\crm_core_user_sync\Form

Code

public function getEditableConfigNames() {
  return [
    'crm_core_user_sync.settings',
  ];
}