You are here

function file_type_load_multiple in File Entity (fieldable files) 7.3

Same name and namespace in other branches
  1. 7.2 file_entity.file_api.inc \file_type_load_multiple()

Load multiple file type configuration objects.

Parameters

array $names: An array of file type machine names to load.

Return value

array An array of file type objects, keyed by machine name.

Related topics

File

./file_entity.file_api.inc, line 461
API extensions of Drupal core's file.inc.

Code

function file_type_load_multiple(array $names) {
  ctools_include('export');
  return ctools_export_crud_load_multiple('file_type', $names);
}