function videoftp_theme in Video 6.5
Same name and namespace in other branches
- 6.4 types/videoftp/videoftp.module \videoftp_theme()
Implementation of hook_theme().
File
- types/
videoftp/ videoftp.module, line 32
Code
function videoftp_theme() {
$theme = array();
$theme['videoftp_widget'] = array(
'arguments' => array(
'element' => NULL,
),
'file' => 'videoftp.theme.inc',
);
$theme['videoftp_widget_item'] = array(
'arguments' => array(
'element' => NULL,
),
'file' => 'videoftp.theme.inc',
);
$theme['videoftp_widget_file'] = array(
'arguments' => array(
'element' => NULL,
),
'file' => 'videoftp.theme.inc',
);
return $theme;
}