You are here

protected function RateSettingsForm::getEditableConfigNames in Rate 8.2

Same name and namespace in other branches
  1. 8 src/Form/RateSettingsForm.php \Drupal\rate\Form\RateSettingsForm::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

src/Form/RateSettingsForm.php, line 29

Class

RateSettingsForm
Configure rate settings for the site.

Namespace

Drupal\rate\Form

Code

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