function oembedcore_theme in oEmbed 6.0
Implementation of hook_theme().
File
- ./
oembedcore.module, line 56 - Core functionality for oEmbed
Code
function oembedcore_theme() {
$path = drupal_get_path('module', 'oembedcore') . '/theme';
return array(
'oembed' => array(
'template' => 'oembed',
'file' => 'oembedcore_theme.inc',
'path' => $path,
'arguments' => array(
'embed' => NULL,
),
),
);
}