You are here

function relation_rules_access in Relation 8

Same name and namespace in other branches
  1. 8.2 relation.rules.inc \relation_rules_access()
  2. 7 relation.rules.inc \relation_rules_access()

Access callback for creating a relation.

For now, everyone has permission to trigger the creation of a relation.

File

./relation.rules.inc, line 96
Implements the Rules module API for Relation.

Code

function relation_rules_access($op, $entity = NULL, $account = NULL) {
  return TRUE;
}