function comment_og_menu_alter in Comment OG 5
Same name and namespace in other branches
- 6 comment_og.module \comment_og_menu_alter()
- 7 comment_og.module \comment_og_menu_alter()
Implementation of hook_menu_alter().
File
- ./
comment_og.module, line 68
Code
function comment_og_menu_alter(&$items) {
// allows group admins to delete comments
$items['comment/delete'] = array(
'title' => 'Delete comment',
'page callback' => 'comment_delete',
'access callback' => 'comment_og_comment_delete',
'access arguments' => array(
3,
),
'type' => MENU_CALLBACK,
'file' => 'comment.admin.inc',
'file path' => drupal_get_path('module', 'comment'),
);
}