function video_general_admin_settings in Video 7
Same name and namespace in other branches
- 6.5 video.admin.inc \video_general_admin_settings()
- 6.4 video.admin.inc \video_general_admin_settings()
- 7.2 modules/video_ui/video.admin.inc \video_general_admin_settings()
Video general admin settings
Return value
<type>
1 string reference to 'video_general_admin_settings'
- video_ui_menu in modules/
video_ui/ video_ui.module - Implementation of hook_menu().
File
- modules/
video_ui/ video.admin.inc, line 47 - Provides the administration settings for the Video Drupal module.
Code
function video_general_admin_settings() {
$form = array();
$form['video_autoplay'] = array(
'#type' => 'checkbox',
'#title' => t('Automatically start video on page load'),
'#default_value' => variable_get('video_autoplay', FALSE),
'#description' => t('Start the video when the page and video loads'),
);
$form['video_autobuffering'] = array(
'#type' => 'checkbox',
'#title' => t('Automatically start video buffering'),
'#default_value' => variable_get('video_autobuffering', TRUE),
'#description' => t('Start buffering video when the page and video loads'),
);
$form['video_bypass_conversion'] = array(
'#type' => 'checkbox',
'#title' => t('Bypass video conversion'),
'#default_value' => variable_get('video_bypass_conversion', FALSE),
'#description' => t('Bypass video conversion when creating videos.'),
);
$form['video_convert_on_save'] = array(
'#type' => 'checkbox',
'#title' => t('Video convert on node submit'),
'#default_value' => variable_get('video_convert_on_save', FALSE),
'#description' => t('Convert videos on node submit will enable by default for all users.'),
);
$form['video_use_default_thumb'] = array(
'#type' => 'checkbox',
'#title' => t('Override video thumbnails with default thumbnail'),
'#default_value' => variable_get('video_use_default_thumb', FALSE),
'#description' => t('Override auto thumbnails with default thumbnail.'),
);
$form['video_publish_on_complete'] = array(
'#type' => 'checkbox',
'#title' => t('Publish when conversion complete'),
'#default_value' => variable_get('video_publish_on_complete', TRUE),
'#description' => t('Un-publish the node on submit and once conversion complete
turn node in to publish.'),
);
return system_settings_form($form);
}