aboutsummaryrefslogtreecommitdiff
path: root/plugins/video_params/video_params.module
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/video_params/video_params.module')
-rw-r--r--plugins/video_params/video_params.module11
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/video_params/video_params.module b/plugins/video_params/video_params.module
index 46fa2e3..4fa71a1 100644
--- a/plugins/video_params/video_params.module
+++ b/plugins/video_params/video_params.module
@@ -1,11 +1,12 @@
<?php
-// $Id$
-
/**
* @file
* Enable addition of params to object generated by video module
*
* @author Fabio Varesano <fvaresano at yahoo dot it>
+ * porting to Drupal 6
+ * @author Heshan Wanigasooriya <heshan at heidisoft.com><heshanmw@gmail.com>
+ * @todo
*/
@@ -13,8 +14,8 @@
/**
* Implementation of hook_help().
*/
-function video_params_help($section) {
- switch ($section) {
+function video_params_help($path, $arg) {
+ switch ($path) {
case 'admin/modules#description':
return t('Enable addition of html params to object generated by video module. Useful if you need to use swf videos which needs params to be passed.');
}
@@ -36,7 +37,7 @@ function video_params_perm() {
* We use this to add a text area to the video creation form.
* In the text area the user will be able to insert his param value association.
*/
-function video_params_form_alter($form_id, &$form) {
+function video_params_form_alter(&$form, &$form_state, $form_id) {
if($form_id == 'video_node_form' && isset($form['video']) && user_access('insert object params')) {