You are here

protected function SupportTicketEntitySettingsForm::getEditableConfigNames in Support Ticketing System 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/support_ticket/src/Form/SupportTicketEntitySettingsForm.php, line 56
Contains \Drupal\config\Form\SupportTicketEntitySettingsForm.

Class

SupportTicketEntitySettingsForm
Defines the settings form for a support ticket entity.

Namespace

Drupal\support_ticket\Form

Code

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