function oembedcore_preset_load in oEmbed 6.0
Load a single preset
1 call to oembedcore_preset_load()
- template_preprocess_oembedfield_formatter_oembed_default in theme/
oembedfield_theme.inc - @file Theme related functions for oEmbed Field
File
- ./
oembedcore.module, line 400 - Core functionality for oEmbed
Code
function oembedcore_preset_load($name) {
ctools_include('export');
$result = ctools_export_load_object('oembedcore_preset', 'names', array(
$name,
));
if (isset($result[$name])) {
return $result[$name];
}
else {
return FALSE;
}
}