You are here

public function AjaxLinksApiSettingsForm::getEditableConfigNames in Ajaxify Drupal with JQuery Ajax 8

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/AjaxLinksApiSettingsForm.php, line 77

Class

AjaxLinksApiSettingsForm
Displays the Ajax links API settings form.

Namespace

Drupal\ajax_links_api\Form

Code

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