You are here

protected function CronForm::getEditableConfigNames in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/src/Form/CronForm.php \Drupal\system\Form\CronForm::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

core/modules/system/src/Form/CronForm.php, line 77

Class

CronForm
Configure cron settings for this site.

Namespace

Drupal\system\Form

Code

protected function getEditableConfigNames() {
  return [
    'system.cron',
  ];
}