function rules_taxonomy_term_integration_access
Taxonomy term integration access callback.
Related topics
1 string reference to 'rules_taxonomy_term_integration_access'
- rules_taxonomy_event_info in modules/
taxonomy.rules.inc - Implements hook_rules_event_info().
File
-
modules/
taxonomy.rules.inc, line 116
Code
function rules_taxonomy_term_integration_access($type, $name) {
if ($type == 'event' || $type == 'condition') {
return entity_access('view', 'taxonomy_term');
}
}