You are here

function node_registration_access_proxy in Node registration 7

Access callback proxy for entity_access(), which has a different argument order.

1 string reference to 'node_registration_access_proxy'
node_registration_entity_info in includes/node_registration.entity.inc
Implements hook_entity_info().

File

includes/node_registration.entity.inc, line 69
Entity hooks and callbacks for registrations.

Code

function node_registration_access_proxy($op, $registration, $account) {
  return node_registration_access($registration, $op, $account);
}