You are here

function file_entity_test_file_type_file_entity_test_claim in D7 Media 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 file_entity/tests/file_entity_test.module
Implements hook_file_type_info().

File

file_entity/tests/file_entity_test.module, line 77
File Entity Test

Code

function file_entity_test_file_type_file_entity_test_claim($file) {
  return TRUE;
}