You are here

function oembed_filter_oembed_legacy_process in oEmbed 8

Same name and namespace in other branches
  1. 7 oembed.filter.inc \oembed_filter_oembed_legacy_process()
  2. 7.0 oembed.filter.inc \oembed_filter_oembed_legacy_process()

Implements hook_filter_FILTER_process().

1 string reference to 'oembed_filter_oembed_legacy_process'
oembed_filter_info in ./oembed.filter.inc
Implements hook_filter_info().

File

./oembed.filter.inc, line 40
Input filter that enhances oEmbed enabled URLs with extra content

Code

function oembed_filter_oembed_legacy_process($text, $filter, $format, $langcode, $cache, $cache_id) {
  module_load_include('inc', 'oembed', 'oembed_legacy');
  return _oembed_filter_apply($text, $filter, $format, $langcode, $cache, $cache_id);
}