aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorFabio Varesano <fax8@13637.no-reply.drupal.org>2007-01-14 14:59:06 +0000
committerFabio Varesano <fax8@13637.no-reply.drupal.org>2007-01-14 14:59:06 +0000
commitcd355d137ff231091774b87050ffd5ec76d9ef4d (patch)
tree2114d99508bd582f840a97478f73aa1a013cc968 /plugins
parentb672efbca9d447a0605366ffaa44099a207d3529 (diff)
downloadvideo-cd355d137ff231091774b87050ffd5ec76d9ef4d.tar.gz
video-cd355d137ff231091774b87050ffd5ec76d9ef4d.tar.bz2
Let's prepare for video upload status bar.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/video_upload/video_upload.js12
-rw-r--r--plugins/video_upload/video_upload.module14
2 files changed, 26 insertions, 0 deletions
diff --git a/plugins/video_upload/video_upload.js b/plugins/video_upload/video_upload.js
new file mode 100644
index 0000000..0fd80c1
--- /dev/null
+++ b/plugins/video_upload/video_upload.js
@@ -0,0 +1,12 @@
+// $Id$
+/**
+ * @file
+ * Javascript functions for busy status on video uploads
+ *
+ * TODO: Support AJAX Uploads :-)
+ *
+ * @author Fabio Varesano <fvaresano at yahoo dot it>
+*/
+
+
+
diff --git a/plugins/video_upload/video_upload.module b/plugins/video_upload/video_upload.module
index f22327b..55d72d7 100644
--- a/plugins/video_upload/video_upload.module
+++ b/plugins/video_upload/video_upload.module
@@ -133,6 +133,8 @@ function video_upload_nodeapi(&$node, $op, $teaser) {
function video_upload_form_alter($form_id, &$form) {
if($form_id == 'video_node_form' && isset($form['video']) && user_access('upload video files')) {
+
+ theme('video_upload_get_script');
//get node object from form
$node = $form['#node'];
@@ -352,3 +354,15 @@ function _video_upload_check_settings() {
return true;
}
+
+
+
+/**
+ * Import the video_upload.js script
+ */
+function theme_video_upload_get_script() {
+ drupal_add_js(drupal_get_path('module', 'video_upload') . '/video_upload.js');
+}
+
+
+