diff options
author | Heshan <heshan@heidisoft.com> | 2011-03-11 23:09:50 +0530 |
---|---|---|
committer | Heshan <heshan@heidisoft.com> | 2011-03-11 23:09:50 +0530 |
commit | d47e35b2a2c56ecbfc813433d96082394f98136b (patch) | |
tree | 6f19f445f0065d1eaefbcafd0fafc49980583c53 /modules | |
parent | a9addd6ed7ab0e15e1d4b3db4c67ea9b00578d2d (diff) | |
download | video-d47e35b2a2c56ecbfc813433d96082394f98136b.tar.gz video-d47e35b2a2c56ecbfc813433d96082394f98136b.tar.bz2 |
Adding video autoconversion and ported video_ffmpeg database queries to D7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/video_ui/video.admin.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/video_ui/video.admin.inc b/modules/video_ui/video.admin.inc index 0f55dea..51f9a1c 100644 --- a/modules/video_ui/video.admin.inc +++ b/modules/video_ui/video.admin.inc @@ -76,6 +76,13 @@ function video_general_admin_settings() { '#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('Initially un-publish till conversion complete and then + publish the node only when conversion complete and successful.') + ); return system_settings_form($form); } |