| 5 comment.module | comment_admin($type = 'new') |
| 6 comment.admin.inc | comment_admin($type = 'new') |
| 7 comment.admin.inc | comment_admin($type = 'new') |
| 8 comment.admin.inc | comment_admin($type = 'new') |
Menu callback; present an administrative comment listing.
1 string reference to 'comment_admin'
File
- modules/
comment/ comment.admin.inc, line 11 - Admin page callbacks for the comment module.
Code
function comment_admin($type = 'new') {
$edit = $_POST;
if (isset($edit['operation']) && ($edit['operation'] == 'delete') && isset($edit['comments']) && $edit['comments']) {
return drupal_get_form('comment_multiple_delete_confirm');
}
else {
return drupal_get_form('comment_admin_overview', $type);
}
}
Login or register to post comments