aboutsummaryrefslogtreecommitdiff
path: root/plugins/video_image
diff options
context:
space:
mode:
authorFabio Varesano <fax8@13637.no-reply.drupal.org>2007-01-11 07:43:59 +0000
committerFabio Varesano <fax8@13637.no-reply.drupal.org>2007-01-11 07:43:59 +0000
commit18fbdce5034299832762b72e4653bf6028e8252d (patch)
tree0b90a46b465c8a08f995da02f14d77214672a604 /plugins/video_image
parentd2c9046205bd5c9a61ffe1792470defbfa0250ce (diff)
downloadvideo-18fbdce5034299832762b72e4653bf6028e8252d.tar.gz
video-18fbdce5034299832762b72e4653bf6028e8252d.tar.bz2
Added *draft* and *incomplete* support for video conversion throught the video_render.php script
Added functions for video_render.php to video_ffmpeg_helper.module Fixed bug #108445 reported by incom (http://drupal.org/user/64246) Call to undefined function: module_exist() in /home/..../modules/video/views_video.inc on line 69
Diffstat (limited to 'plugins/video_image')
-rw-r--r--plugins/video_image/video_image.module6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/video_image/video_image.module b/plugins/video_image/video_image.module
index 9b8c0da..4c134eb 100644
--- a/plugins/video_image/video_image.module
+++ b/plugins/video_image/video_image.module
@@ -54,13 +54,15 @@ function video_image_admin_settings() {
'#type' => 'checkbox',
'#title' => t('Publish the video thumbnails'),
'#description' => t('Checking this value will cause the video thumbnail image nodes to be published and therefore could show up in blocks. Usually, this is not what you want because then you could end up with both the thumbnail node and the video node showing up and since there is no way to link the image node to the video node, this is not desirable. However, with this unchecked, the administrator will end up with a lot of unpublished nodes.'),
- '#default_value' => _video_publish_thumbnails(),
+ '#default_value' => _video_image_publish_thumbnails(),
);
$form['video_image_promote_thumbnail'] = array(
'#type' => 'checkbox',
'#title' => t('Promote the thumbnails to the front page'),
- '#default_value' => _video_promote_thumbnails(),
+ '#default_value' => _video_image_promote_thumbnails(),
);
+
+ return system_settings_form($form);
}
/**