You are here

function rules_taxonomy_vocabulary_integration_access in Rules 7.2

Taxonomy vocabulary integration access callback.

Related topics

1 string reference to 'rules_taxonomy_vocabulary_integration_access'
rules_taxonomy_event_info in modules/taxonomy.rules.inc
Implements hook_rules_event_info().

File

modules/taxonomy.rules.inc, line 125
Rules integration for the taxonomy_term module.

Code

function rules_taxonomy_vocabulary_integration_access($type, $name) {
  if ($type == 'event' || $type == 'condition') {
    return entity_access('view', 'taxonomy_vocabulary');
  }
}