function comment_confirm_delete_page

Page callback: Shows a confirmation page for comment deletions.

Parameters

\Drupal\comment\Plugin\Core\Entity\Comment $comment: The comment entity that is about to be deleted.

See also

comment_menu()

comment_confirm_delete()

1 string reference to 'comment_confirm_delete_page'
comment_menu in drupal/core/modules/comment/comment.module
Implements hook_menu().

File

drupal/core/modules/comment/comment.admin.inc, line 274
Admin page callbacks for the Comment module.

Code

function comment_confirm_delete_page(Comment $comment) {
  return drupal_get_form('comment_confirm_delete', $comment);
}