You are here

public function SettingsForm::getEditableConfigNames in Simple Google Custom Search Engine 8

Same name and namespace in other branches
  1. 2.0.x src/Form/SettingsForm.php \Drupal\simple_gse_search\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

src/Form/SettingsForm.php, line 23

Class

SettingsForm
Defines a settings form for administering Simple CSE search.

Namespace

Drupal\simple_gse_search\Form

Code

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