public ModulesListConfirmForm::getQuestion()
Returns the question to ask the user.
Return value
string The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
File
- core/modules/system/src/Form/ModulesListConfirmForm.php, line 78
Class
- ModulesListConfirmForm
- Builds a confirmation form for enabling modules with dependencies.
Namespace
Drupal\system\Form
Code
1 2 3 | public function getQuestion() { return $this ->t( 'Some required modules must be enabled' ); } |
Please login to continue.