You are here

public function TableSorterSettings::getEditableConfigNames in Tablesorter 8

Same name and namespace in other branches
  1. 3.0.x src/Form/TableSorterSettings.php \Drupal\tablesorter\Form\TableSorterSettings::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/TableSorterSettings.php, line 24

Class

TableSorterSettings
Table sorter settings form.

Namespace

Drupal\tablesorter\Form

Code

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