1 comment.admin.inc | comment_confirm_delete_page($cid) |
Page callback: Shows a confirmation page for comment deletions.
Parameters
$cid: The ID of the comment that is about to be deleted.
See also
File
- core/
modules/ comment/ comment.admin.inc, line 267 - Admin page callbacks for the Comment module.
Code
function comment_confirm_delete_page($cid) {
if ($comment = comment_load($cid)) {
return backdrop_get_form('comment_confirm_delete', $comment);
}
return MENU_NOT_FOUND;
}