From b66f50d2ce11d0cc8bb53af94ad86278d3fe8e51 Mon Sep 17 00:00:00 2001 From: glen201 Date: Fri, 31 Jul 2009 02:01:53 +0000 Subject: #486064: by RobertOak "no video fields in views" Fixed, added Views 2 support .MPEG/MPG defaulted to play with Windows Media --- includes/video_views_handler_field_image.inc | 74 ++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 includes/video_views_handler_field_image.inc (limited to 'includes/video_views_handler_field_image.inc') diff --git a/includes/video_views_handler_field_image.inc b/includes/video_views_handler_field_image.inc new file mode 100644 index 0000000..fbbe905 --- /dev/null +++ b/includes/video_views_handler_field_image.inc @@ -0,0 +1,74 @@ + + * @todo +**/ + +/** + * Field handler to display the video preview thumbnail + * + * @ingroup views_field_handlers + */ +class video_views_handler_field_image extends views_handler_field { + /** + * Define options available for this field. + */ + function option_definition() { + $options = parent::option_definition(); + $options['img_type'] = array('default' => 'thumbnail'); + $options['disp_link'] = array('default' => TRUE); + return $options; + } + + /** + * Build option configuration form. + */ + function options_form(&$form, &$form_state) { + parent::options_form($form, $form_state); + + $form['img_type'] = array( + '#title' => t('Show image as'), + '#type' => 'select', + '#options' => array( + 'thumbnail' => t('Thumbnail'), + 'preview' => t('Preview'), + ), + '#default_value' => $this->options['img_type'], + ); + $form['disp_link'] = array( + '#title' => t('Link image to video'), + '#type' => 'checkbox', + '#default_value' => $this->options['disp_link'], + ); + + } +/** + * Render field output to the browser. + */ + function render($values) { + return _video_views_handler_field_image($values, $this->options['img_type'], $this->options['disp_link']); + } +} +/** +* Handler to render the preview image associated with a video +**/ +function _video_views_handler_field_image($values, $image_type, $linked) { + if($values->node_type && $values->node_type != 'video') return NULL; + $node = node_load($values->nid); + $output = NULL; + if($node->iid && $image = node_load($node->iid)) { + $image_html = NULL; + if($image != NULL && $image->type == 'image') { + $image_html = image_display($image, $image_type, array('class' => 'video_image_teaser')); + //Create a link with an image in it. + $output .= ($linked ? l($image_html, "node/$values->nid", array('html' => TRUE)) : $image_html); + $output .= '
'; + } + } + return $output; +} -- cgit v1.2.3