You are here

protected function IgnoredModulesForm::addDescription in Nagios Monitoring 8

Build the list of modules

Parameters

array $form: An associative array containing the structure of the form.

1 call to IgnoredModulesForm::addDescription()
IgnoredModulesForm::buildForm in src/Form/IgnoredModulesForm.php
Form constructor.

File

src/Form/IgnoredModulesForm.php, line 109

Class

IgnoredModulesForm

Namespace

Drupal\nagios\Form

Code

protected function addDescription(array &$form) {
  $form['intro'] = [
    '#markup' => $this
      ->t('Select those modules that should be ignored for requirement checks.'),
  ];
}