function _oembed_resolve_link in oEmbed 7.0
Same name and namespace in other branches
- 8 oembed_legacy.inc \_oembed_resolve_link()
- 6.0 oembed.inc \_oembed_resolve_link()
- 7 oembed_legacy.inc \_oembed_resolve_link()
1 call to _oembed_resolve_link()
File
- ./
oembed_legacy.inc, line 45 - Functions for the oEmbed filter
Code
function _oembed_resolve_link($match, $prefix, $suffix) {
global $_oembed_default_parameters;
$url = decode_entities($match);
return $prefix . oembed_resolve_link($_oembed_default_parameters, $url) . $suffix;
}