You are here

function message_type_category_access in Message 7

Access callback for the message type categories.

1 string reference to 'message_type_category_access'
message_entity_info in ./message.module
Implements hook_entity_info().

File

./message.module, line 962
API functions to manipulate messages.

Code

function message_type_category_access($op, $entity, $account, $entity_type) {
  return user_access('administer message types', $account);
}