From 38373b18497493630ba298df1ec638655d09f8db Mon Sep 17 00:00:00 2001 From: Fabio Varesano Date: Mon, 19 Jun 2006 22:49:16 +0000 Subject: Some debugging for plugins. Patch #69330 by geodan (http://drupal.org/user/37266) Allow users to edit own videos: This patch adds an 'edit own videos' permission to allow users to edit their own video nodes without having the 'administer nodes' privelage. --- plugins/video_image/video_image.module | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'plugins/video_image/video_image.module') diff --git a/plugins/video_image/video_image.module b/plugins/video_image/video_image.module index 59795cf..89a9e96 100644 --- a/plugins/video_image/video_image.module +++ b/plugins/video_image/video_image.module @@ -55,6 +55,9 @@ function video_image_form_alter($form_id, &$form) { function video_image_nodeapi(&$node, $op, $teaser) { if($node->type == 'video') { switch ($op) { + case 'load': + $output['iid'] = $node->serial_data['iid']; + return $output; case 'submit': $node->serial_data['iid'] = $node->iid; break; @@ -80,7 +83,6 @@ function video_image_nodeapi(&$node, $op, $teaser) { break; case 'view': - //print_r($node); if($teaser) { if ($node->serial_data['image_teaser'] || $node->serial_data['iid']) { //If we are dealing with a teaser. $node->teaser = theme('video_image_teaser', $node); @@ -111,7 +113,7 @@ function theme_video_image_teaser($node) { $image = node_load($node->serial_data['iid']); $image = image_display($image, 'thumbnail', array('class' => 'video_image_teaser')); } - else { + else { // only for backward compatibility $image = theme('image', $node->serial_data['image_teaser'], $node->title, $node->title, array('class' => 'video_image_teaser'), FALSE); } $output .= l($image, "node/$node->nid", array(), NULL, NULL, FALSE, TRUE); //Create a link with an image in it. -- cgit v1.2.3