You are here

protected function youtubechannelSettingsForm::getEditableConfigNames in YoutubeChannel 8

Same name and namespace in other branches
  1. 8.3 src/YoutubechannelSettingsForm.php \Drupal\youtubechannel\YoutubechannelSettingsForm::getEditableConfigNames()
  2. 8.2 src/YoutubechannelSettingsForm.php \Drupal\youtubechannel\YoutubechannelSettingsForm::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/YoutubechannelSettingsForm.php, line 28
Contains \Drupal\youtubechannel\youtubechannelSettingsForm

Class

youtubechannelSettingsForm
provides Configure settings.

Namespace

Drupal\youtubechannel

Code

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