function oembedprovider_theme in oEmbed 6.0
Implementation of hook_theme().
File
- ./
oembedprovider.module, line 30 - Module for providing content as defined in the oEmbed specification
Code
function oembedprovider_theme() {
$themes = array();
$themes['oembed_node'] = array(
'arguments' => array(
'node' => NULL,
),
);
return $themes;
}