From a69b21cc7ee12c117b58f0d940f7cb9d38278384 Mon Sep 17 00:00:00 2001 From: Heshan Wanigasooriya Date: Mon, 27 Apr 2009 09:47:43 +0000 Subject: adding plugins to the HEAD --- plugins/video_params/video_params.module | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'plugins/video_params/video_params.module') 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 @@ + * porting to Drupal 6 + * @author Heshan Wanigasooriya + * @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')) { -- cgit v1.2.3