public function BrightcoveAPIClientDeleteForm::getQuestion in Brightcove Video Connect 8
Same name and namespace in other branches
- 8.2 src/Form/BrightcoveAPIClientDeleteForm.php \Drupal\brightcove\Form\BrightcoveAPIClientDeleteForm::getQuestion()
- 3.x src/Form/BrightcoveAPIClientDeleteForm.php \Drupal\brightcove\Form\BrightcoveAPIClientDeleteForm::getQuestion()
Returns the question to ask the user.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
File
- src/
Form/ BrightcoveAPIClientDeleteForm.php, line 126
Class
- BrightcoveAPIClientDeleteForm
- Builds the form to delete Brightcove API Client entities.
Namespace
Drupal\brightcove\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete %name?', [
'%name' => $this->entity
->label(),
]);
}