You are here

function template_preprocess_views_nivo_slider_view_nivo_sliderfields in Views Nivo Slider 7

Same name and namespace in other branches
  1. 6.2 views_nivo_slider.module \template_preprocess_views_nivo_slider_view_nivo_sliderfields()
  2. 6 views_nivo_slider.module \template_preprocess_views_nivo_slider_view_nivo_sliderfields()
  3. 7.3 views_nivo_slider.module \template_preprocess_views_nivo_slider_view_nivo_sliderfields()
  4. 7.2 views_nivo_slider.module \template_preprocess_views_nivo_slider_view_nivo_sliderfields()

Implementation of template preprocess for the view fields

File

./views_nivo_slider.module, line 77
The implementation of Views Nivo Slider module.

Code

function template_preprocess_views_nivo_slider_view_nivo_sliderfields(&$vars) {
  $view =& $vars['view'];
  $options = $vars['options'];
  $style = $view->style_options;
  $row = $vars['row'];
  $presetname = $style['imagefield_preset'];
  $thumbnail_url = $title = $link = NULL;

  // Force URL format for image_field
  if (isset($view->field[$options['image_field']])) {
    $view->field[$options['image_field']]->options['settings']['image_style'] = $presetname;
    $view->field[$options['image_field']]->options['type'] = 'path_plain';
    $view->field[$options['image_field']]->options['alter']['make_link'] = 0;
  }
  if ($style['controlNav'] == 'thumbsField') {
    $view->field[$style['controlNavThumbsField']]->options['format'] = 'path_plain';
    $view->field[$style['controlNavThumbsField']]->options['alter']['make_link'] = 0;
  }

  // link
  if (isset($view->field[$options['link_field']])) {

    //Node: Link
    if ($view->field[$options['link_field']]->definition['handler'] == 'views_handler_field_node_link') {
      $link = url('node/' . $view->result[$view->row_index]->nid);
    }
    else {
      $view->field[$options['link_field']]->options['format'] = 'plain';
    }
  }
  $attributes = NULL;
  foreach ($view->field as $id => $field) {
    $field_output = $view->field[$id]
      ->theme($vars['row']);
    switch ($id) {
      case $options['image_field']:

        //$image_url = $field_output;
        $field_image_name = "field_data_{$options['image_field']}_node_values";
        $image_url = $row->{$field_image_name}[0]['uri'];
        break;
      case $options['title_field']:
        $title = $field_output;
        $title_id = $title ? drupal_clean_css_identifier($id . "-" . $field->view->row_index) : '';
        if ($title) {
          $view->_vns_captions[$title_id] = $title;
          $title_id = '#' . $title_id;
        }
        break;
      case $options['link_field']:
        if ($field->definition['handler'] != 'views_handler_field_node_link') {
          $link = check_url($field_output);
        }
        break;
      case $style['controlNavThumbsField']:
        if ($style['controlNav'] == 'thumbsField') {
          $field_image_name = "field_data_{$style['controlNavThumbsField']}_node_values";
          $field_output = $row->{$field_image_name}[0]['uri'];
          if (!empty($style['controlNavThumbsICField'])) {
            $turl = image_style_url($style['controlNavThumbsICField'], $field_output);
          }
          else {
            $turl = $field_output;
          }
          $attributes = array(
            'rel' => $turl,
          );
        }
        break;
    }
  }
  $params = array(
    'style_name' => $presetname,
    'path' => $image_url,
    'title' => $title_id,
    'attributes' => $attributes,
  );
  $img = theme('image_style', $params);
  if ($link) {
    $img = '<a href="' . $link . '" class="views-processed">' . $img . '</a>';
  }
  $vars['content'] = $img;
}