function comment_confirm_delete_page

comment_confirm_delete_page($cid)

Page callback for comment deletions.

File

modules/comment/comment.admin.inc, line 244
Admin page callbacks for the comment module.

Code

function comment_confirm_delete_page($cid) {
  if ($comment = comment_load($cid)) {
    return drupal_get_form('comment_confirm_delete', $comment);
  }
  return MENU_NOT_FOUND;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!comment!comment.admin.inc/function/comment_confirm_delete_page/7.x