You are here

function media_field_attach_insert in D7 Media 7

Implements hook_field_attach_insert().

Track file usage for media files included in formatted text. Note that this is heavy-handed, and should be replaced when Drupal's filter system is context-aware.

File

includes/media.filter.inc, line 31
Functions related to the WYSIWYG editor and the media input filter.

Code

function media_field_attach_insert($entity_type, $entity) {
  _media_filter_add_file_usage_from_fields($entity_type, $entity);
}