public function BrightcoveAPIClientDeleteForm::getDescription in Brightcove Video Connect 8
Same name and namespace in other branches
- 8.2 src/Form/BrightcoveAPIClientDeleteForm.php \Drupal\brightcove\Form\BrightcoveAPIClientDeleteForm::getDescription()
- 3.x src/Form/BrightcoveAPIClientDeleteForm.php \Drupal\brightcove\Form\BrightcoveAPIClientDeleteForm::getDescription()
Returns additional text to display as a description.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form description.
Overrides EntityConfirmFormBase::getDescription
File
- src/
Form/ BrightcoveAPIClientDeleteForm.php, line 133
Class
- BrightcoveAPIClientDeleteForm
- Builds the form to delete Brightcove API Client entities.
Namespace
Drupal\brightcove\FormCode
public function getDescription() {
return parent::getDescription() . '<br>' . $this
->t('Warning: By deleting API Client all of its local contents will be deleted too, including videos, playlists, players, custom fields and subscriptions.');
}