You are here

public function PDFGenerationConfigForm::getEditableConfigNames in Forena Reports 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

forena_pdf/src/Form/PDFGenerationConfigForm.php, line 27

Class

PDFGenerationConfigForm

Namespace

Drupal\forena_pdf\Form

Code

public function getEditableConfigNames() {
  return array(
    'forena_pdf.settings',
  );
}