function videoftp_widget_settings in Video 6.5
Same name and namespace in other branches
- 6.4 types/videoftp/videoftp.module \videoftp_widget_settings()
Implementation of CCK's hook_widget_settings().
File
- types/
videoftp/ videoftp.module, line 102
Code
function videoftp_widget_settings($op, $widget) {
// Load up our include file for the widget
module_load_include('inc', 'videoftp', 'videoftp_widget');
switch ($op) {
case 'form':
return videoftp_widget_settings_form($widget);
case 'validate':
return videoftp_widget_settings_validate($widget);
case 'save':
return videoftp_widget_settings_save($widget);
}
}