function rules_video_integration_access in Video 7.2
Node integration access callback.
1 string reference to 'rules_video_integration_access'
- video_rules_event_info in ./
video.rules.inc - Implements hook_rules_event_info() on behalf of the video module.
File
- ./
video.rules.inc, line 46 - rules integration for the video module
Code
function rules_video_integration_access($type, $name) {
if ($type == 'event' || $type == 'condition') {
return entity_access('view', 'node');
}
}