You are here

function party_activity_type_access in Party 7

Same name and namespace in other branches
  1. 8.2 modules/party_activity/party_activity.module \party_activity_type_access()

Access callback for the entity API

1 string reference to 'party_activity_type_access'
party_activity_entity_info in modules/party_activity/party_activity.module
Implements hook_entity_info().

File

modules/party_activity/party_activity.module, line 173
Functions and important hooks for the party_activity module

Code

function party_activity_type_access($op, $type = NULL, $account = NULL) {
  return user_access('administer activity types', $account);
}