You are here

function computing_record_entity_access in Drupal Computing 7.2

1 string reference to 'computing_record_entity_access'
computing_entity_info in ./computing.entity.inc
Implement hook_entity_info().

File

./computing.entity.inc, line 99
Code for the entity. This does not allow UI to create Computing Record entities or Computing Application entities. It has to be done in program.

Code

function computing_record_entity_access($op, $entity = NULL, $account = NULL, $entity_type = NULL) {
  return user_access('administer computing records', $account);
}