public function MediaBundleDeleteConfirm::buildForm in Media entity 8
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides EntityDeleteForm::buildForm
File
- src/
Form/ MediaBundleDeleteConfirm.php, line 44
Class
- MediaBundleDeleteConfirm
- Provides a form for media bundle deletion.
Namespace
Drupal\media_entity\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$num_entities = $this->entityTypeManager
->getStorage('media')
->getQuery()
->condition('bundle', $this->entity
->id())
->count()
->execute();
if ($num_entities) {
$caption = '<p>' . $this
->formatPlural($num_entities, '%type is used by 1 piece of content on your site. You can not remove this content type until you have removed all of the %type content.', '%type is used by @count pieces of content on your site. You may not remove %type until you have removed all of the %type content.', [
'%type' => $this->entity
->label(),
]) . '</p>';
$form['#title'] = $this
->getQuestion();
$form['description'] = [
'#markup' => $caption,
];
return $form;
}
return parent::buildForm($form, $form_state);
}