You are here

function comment_delete_menu in Comment Delete 6

Same name and namespace in other branches
  1. 7 comment_delete.module \comment_delete_menu()

Implementation of hook_menu().

File

./comment_delete.module, line 20

Code

function comment_delete_menu() {
  $items['admin/content/comment/deletion'] = array(
    'title' => 'Deletion settings',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'comment_delete_settings_form',
    ),
    'access arguments' => array(
      'administer comments',
    ),
    'type' => MENU_LOCAL_TASK,
    'file' => 'comment_delete.admin.inc',
  );
  return $items;
}