You are here

function vsf_management_entity_info_alter in Visual select file 7

Implements hook_entity_info_alter().

Parameters

array $info:

File

submodules/vsf_management/vsf_management.module, line 52

Code

function vsf_management_entity_info_alter(&$info) {
  if (isset($info['file']['access callback']) && $info['file']['access callback'] === 'entity_metadata_file_access') {
    $info['file']['access callback'] = 'vsf_management_file_access';
  }
}