public function MenuDeleteForm::getDescription in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/menu_ui/src/Form/MenuDeleteForm.php \Drupal\menu_ui\Form\MenuDeleteForm::getDescription()
Returns additional text to display as a description.
Return value
string The form description.
Overrides EntityConfirmFormBase::getDescription
File
- core/
modules/ menu_ui/ src/ Form/ MenuDeleteForm.php, line 61 - Contains \Drupal\menu_ui\Form\MenuDeleteForm.
Class
- MenuDeleteForm
- Defines a confirmation form for deletion of a custom menu.
Namespace
Drupal\menu_ui\FormCode
public function getDescription() {
$caption = '';
$num_links = $this->menuLinkManager
->countMenuLinks($this->entity
->id());
if ($num_links) {
$caption .= '<p>' . $this
->formatPlural($num_links, '<strong>Warning:</strong> There is currently 1 menu link in %title. It will be deleted (system-defined items will be reset).', '<strong>Warning:</strong> There are currently @count menu links in %title. They will be deleted (system-defined links will be reset).', array(
'%title' => $this->entity
->label(),
)) . '</p>';
}
$caption .= '<p>' . t('This action cannot be undone.') . '</p>';
return $caption;
}