public function ForumUninstallValidator::validate in Drupal 8
Same name in this branch
- 8 core/modules/forum/src/ForumUninstallValidator.php \Drupal\forum\ForumUninstallValidator::validate()
- 8 core/modules/forum/src/ProxyClass/ForumUninstallValidator.php \Drupal\forum\ProxyClass\ForumUninstallValidator::validate()
Same name and namespace in other branches
- 9 core/modules/forum/src/ProxyClass/ForumUninstallValidator.php \Drupal\forum\ProxyClass\ForumUninstallValidator::validate()
Determines the reasons a module can not be uninstalled.
Parameters
string $module: A module name.
Return value
string[] An array of reasons the module can not be uninstalled, empty if it can. Each reason should not end with any punctuation since multiple reasons can be displayed together.
Overrides ModuleUninstallValidatorInterface::validate
See also
template_preprocess_system_modules_uninstall()
File
- core/
modules/ forum/ src/ ProxyClass/ ForumUninstallValidator.php, line 73
Class
- ForumUninstallValidator
- Provides a proxy class for \Drupal\forum\ForumUninstallValidator.
Namespace
Drupal\forum\ProxyClassCode
public function validate($module) {
return $this
->lazyLoadItself()
->validate($module);
}