aboutsummaryrefslogtreecommitdiff
path: root/includes/video_views_handler_field_playtime_seconds.inc
blob: c0efc9311cbeddaaf24a68103b9aa65e7c2a5209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
//$Id$
/**
* Implementation of hook_views_tables
*
* @return
*   array - Enables support in the video module for views integration
 * @author Glen Marianko Twitter@demoforum <glenm at demoforum dot com>
 * @todo
**/

/**
 * Field handler to display the play length of the video.
 *
 * @ingroup views_field_handlers
 */
class video_views_handler_field_playtime_seconds extends views_handler_field {
  /**
   * Define options available for this field.
   */
  function option_definition() {
    $options = parent::option_definition();
    $options['time_type'] = array('default' => 'hms');
    return $options;
  }

  /**
   * Build option configuration form.
   */
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);

    $form['time_type'] = array(
      '#title' => t('Show playtime as'),
      '#type' => 'select',
      '#options' => array(
        'hms' => t('Hour:min:sec'),
        'sec' => t('Seconds'),
        ),
      '#default_value' => $this->options['time_type'],
    );
  }
  /**
   * Render field output to the browser.
   */
  function render($values) {
    return _video_playtime_seconds($values, $this->options['time_type']);
  }
}
/**
* Handler to to render the correct playtime for the video in a field
**/
function _video_playtime_seconds($values, $type) {
  if($values->node_type &&  $values->node_type != 'video') return NULL;
  switch ($type) {
      case 'hms':
          $hms = _video_sec2hms($values->video_playtime_seconds);

          // Pad the minutes / seconds with a leading "0", if
          // necessary
          if ($hms['hours'] > 0) {
            $hms['minutes'] = str_pad($hms['minutes'], 2, '0', STR_PAD_LEFT);
          }
          $hms['seconds'] = str_pad($hms['seconds'], 2, '0', STR_PAD_LEFT);

          $out = '';
          if ($hms['hours'] > 0) {
         $out .= $hms['hours'].":";
          }
          $out .= $hms['minutes'].":".$hms['seconds'];
          return $out;
     case 'sec':
     default:
        return $values->video_playtime_seconds;
  }
}