You are here

protected function AdminOverviewForm::getEditableConfigNames in SMS Framework 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/sms_sendtophone/src/Form/AdminOverviewForm.php, line 54

Class

AdminOverviewForm
Defines admin overview form.

Namespace

Drupal\sms_sendtophone\Form

Code

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