You are here

protected function WorkflowAccessSettingsForm::getEditableConfigNames in Workflow 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

modules/workflow_access/src/Form/WorkflowAccessSettingsForm.php, line 23

Class

WorkflowAccessSettingsForm
Provides the base form for workflow add and edit forms.

Namespace

Drupal\workflow_access\Form

Code

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