You are here

function jplayer_style_plugin::render in jPlayer 7.2

Same name and namespace in other branches
  1. 6 includes/jplayer_style_plugin.inc \jplayer_style_plugin::render()

Render the display in this style.

Overrides views_plugin_style::render

File

includes/jplayer_style_plugin.inc, line 90
Display style plugin for Views that renders rows as a jPlayer playlist.

Class

jplayer_style_plugin
Style plugin to display a jPlayer playlist.

Code

function render() {
  if (empty($this->row_plugin)) {
    vpr('views_plugin_style_default: Missing row plugin');
    return;
  }
  $view = $this->view;

  // Group the rows according to the grouping field, if specified.
  $sets = $this
    ->render_grouping($this->view->result, $this->options['grouping']);
  $fields = $this->display->handler
    ->get_handlers('field');
  $items = array();
  foreach ($sets as $title => $records) {
    foreach ($records as $row_index => $row) {
      $filepath = NULL;
      foreach ($this->options['path_field'] as $field_name) {
        if (isset($row->{$fields[$field_name]->field_alias})) {
          $filepath = $row->{$fields[$field_name]->field_alias};
          break;
        }
      }
      $this->view->row_index = $row_index;
      $label = trim(strip_tags($this->row_plugin
        ->render($row)));
      if (empty($label)) {
        $label = basename($filepath);
      }
      $items[] = array(
        'url' => file_create_url($filepath),
        'label' => $label,
      );
    }
  }
  $output = theme('jplayer_view_playlist', array(
    'view' => $view,
    'items' => $items,
  ));

  // If doing a live preview, add the JavaScript directly to the output.
  if (isset($view->live_preview) && $view->live_preview) {
    $js = drupal_add_js(JS_DEFAULT);
    $settings = array();
    foreach ($js['settings'] as $js_settings) {
      if (isset($js_settings['jPlayer'])) {
        $settings = $js_settings['jPlayer'];
        break;
      }
    }
    $output .= "<script type=\"text/javascript\">\n";
    $output .= "Drupal.settings.jPlayer = Drupal.settings.jPlayer || {};\n";
    $output .= "jQuery.extend(Drupal.settings.jPlayer, " . drupal_json_encode($settings) . ");\n";
    $output .= "</script>\n";
  }
  unset($view->row_index);
  return $output;
}