You are here

function domain_node_access_delete in Domain Access 7.3

Checks if a user can delete content of a specific type based on domain.

This is just a wrapper around the update function, which uses the same logic.

See also

domain_node_access().

File

./domain.module, line 2374
Core module functions for the Domain Access suite.

Code

function domain_node_access_delete($type, $node, $op, $account) {
  return domain_node_access_update($type, $node, $op, $account);
}