You are here

public function ModulesBase::successMessages in Production check & Production monitor 8

Returns the success messages for the check.

Return value

An associative array containing the following keys

  • value: the value of the check
  • description: the description of the check

Overrides ProdCheckInterface::successMessages

File

src/Plugin/ProdCheck/Modules/ModulesBase.php, line 32

Class

ModulesBase
Generic module check class

Namespace

Drupal\prod_check\Plugin\ProdCheck\Modules

Code

public function successMessages() {
  return [
    'value' => $this
      ->t('Disabled'),
    'description' => $this
      ->t('Your settings are OK for production use.'),
  ];
}