public function ProdCheckBase::title in Production check & Production monitor 8
Returns the title of the plugin.
Return value
The title
Overrides ProdCheckInterface::title
15 calls to ProdCheckBase::title()
- Contact::failMessages in src/
Plugin/ ProdCheck/ Modules/ Contact.php - Returns the fail messages for the check
- CssAggregated::failMessages in src/
Plugin/ ProdCheck/ Performance/ CssAggregated.php - Returns the fail messages for the check
- CssAggregated::successMessages in src/
Plugin/ ProdCheck/ Performance/ CssAggregated.php - Returns the success messages for the check.
- DbLog::failMessages in src/
Plugin/ ProdCheck/ Server/ DbLog.php - Returns the fail messages for the check
- ErrorReporting::failMessages in src/
Plugin/ ProdCheck/ Settings/ ErrorReporting.php - Returns the fail messages for the check
File
- src/
Plugin/ ProdCheck/ ProdCheckBase.php, line 132
Class
- ProdCheckBase
- Base class for all the prod check plugins.
Namespace
Drupal\prod_check\Plugin\ProdCheckCode
public function title() {
$definition = $this
->getPluginDefinition();
return $definition['title'];
}