You are here

function flatcomments_existing_flatten_access in Flatcomments 6

Same name and namespace in other branches
  1. 6.2 flatcomments_existing/flatcomments_existing.module \flatcomments_existing_flatten_access()
1 string reference to 'flatcomments_existing_flatten_access'
flatcomments_existing_menu in flatcomments_existing/flatcomments_existing.module
Implementation of hook_menu().

File

flatcomments_existing/flatcomments_existing.module, line 37
Remove threading from existing comments by content type.

Code

function flatcomments_existing_flatten_access() {
  return user_access('administer comments') && user_access('administer nodes') && user_access('administer content types');
}