function video_customfields_theme in Video 6
Implementation of hook_theme().
File
- plugins/
video_customfields/ video_customfields.module, line 272 - Enable addition of custom fileds on video nodes created by video module.
Code
function video_customfields_theme() {
return array(
'video_customfields' => array(
'arguments' => array(
'node' => NULL,
),
),
);
}