You are here

function hook_focal_point_supported_file_types_alter in Focal Point 7

Alter an array of supported file entity types.

Parameters

array $supported: An array of file types as strings.

1 invocation of hook_focal_point_supported_file_types_alter()
_focal_point_supported_file in ./focal_point.module
Determine whether or not the provided file entity can support a focal_point.

File

./focal_point.api.php, line 29
Documentation of Feeds hooks.

Code

function hook_focal_point_supported_file_types_alter(&$supported) {
  $supported[] = 'custom_file_entity_type';
}