You are here

protected function OperationsForm::getEditableConfigNames in Advanced CSS/JS Aggregation 8.2

Same name and namespace in other branches
  1. 8.4 src/Form/OperationsForm.php \Drupal\advagg\Form\OperationsForm::getEditableConfigNames()
  2. 8.3 src/Form/OperationsForm.php \Drupal\advagg\Form\OperationsForm::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/OperationsForm.php, line 116

Class

OperationsForm
Configure advagg settings for this site.

Namespace

Drupal\advagg\Form

Code

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