You are here

function file_entity_test_file_type_file_entity_test_claim in File Entity (fieldable files) 7

Implements hook_file_type_TYPE_claim().

Returns TRUE if the passed in file should be assigned the 'file_entity_test' file type.

1 string reference to 'file_entity_test_file_type_file_entity_test_claim'
file_entity_test_file_type_info in tests/file_entity_test.module
Implements hook_file_type_info().

File

tests/file_entity_test.module, line 77
File Entity Test

Code

function file_entity_test_file_type_file_entity_test_claim($file) {
  return TRUE;
}