function oembedprovider_oembedprovider_formats_alter in oEmbed 6.0
Implementation of hook_oembedprovider_formats_alter().
File
- ./
oembedprovider.module, line 125 - Module for providing content as defined in the oEmbed specification
Code
function oembedprovider_oembedprovider_formats_alter(&$formats) {
$formats['jsonp'] = array(
'mime' => 'text/javascript',
'callback' => '_oembedprovider_formats_jsonp',
);
}