You are here

protected function RuleForm::getEditableConfigNames in CRM Core 8

Same name and namespace in other branches
  1. 8.3 modules/crm_core_user_sync/src/Form/RuleForm.php \Drupal\crm_core_user_sync\Form\RuleForm::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/RuleForm.php, line 24

Class

RuleForm
Configure CRM Core User Synchronization settings for this site.

Namespace

Drupal\crm_core_user_sync\Form

Code

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