You are here

views_handler_field_node_page_title.inc in Page Title 7.2

Contains the Views field handler for the Page Title field.

File

views_handler_field_node_page_title.inc
View source
<?php

/**
 * @file
 * Contains the Views field handler for the Page Title field.
 */

/**
 * Field handler to provide simple renderer that allows linking to a node.
 *
 * This is a copy from views_handler_field_node.inc in the Views module.
 * Additions are commented inline.
 */
class views_handler_field_node_page_title extends views_handler_field_node {

  /**
   * We need to tweak the init() - if we fallback to title, ensure title is in the query!
   */
  function init(&$view, &$options) {
    parent::init($view, $options);
    if (!empty($this->options['use_node_title'])) {
      $this->additional_fields['title'] = array(
        'table' => 'node',
        'field' => 'title',
      );
    }
  }

  /**
   * Define out default options
   */
  function option_definition() {
    $options = parent::option_definition();
    $options['link_to_node'] = array(
      'default' => FALSE,
    );

    // Page Title: Adding the node title fallback option and default value.
    $options['use_node_title'] = array(
      'default' => FALSE,
    );
    return $options;
  }

  /**
   * Provide link to node option and fallback to node title option.
   */
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['link_to_node'] = array(
      '#title' => t('Link this field to its node'),
      '#description' => t('This will override any other link you have set.'),
      '#type' => 'checkbox',
      '#default_value' => !empty($this->options['link_to_node']),
    );

    // Page Title: Adding the form field for the node title fallback option.
    $form['use_node_title'] = array(
      '#title' => t('Fall back on to Node: Title'),
      '#description' => t('If no Page Title is set for a node then the normal node title will be used instead.'),
      '#type' => 'checkbox',
      '#default_value' => !empty($this->options['use_node_title']),
    );
  }

  /**
   * Render whatever the data is as a link to the node.
   *
   * Data should be made XSS safe prior to calling this function.
   */
  function render_link($data, $values) {
    if (!empty($this->options['link_to_node']) && $data !== NULL && $data !== '') {
      $this->options['alter']['make_link'] = TRUE;
      $key = isset($this->aliases['nid']) ? $this->aliases['nid'] : 'nid';
      $this->options['alter']['path'] = "node/" . $values->{$key};
      if (isset($this->aliases['language'])) {
        $languages = language_list();
        if (isset($languages[$values->{$this->aliases['language']}])) {
          $this->options['alter']['language'] = $languages[$values->{$this->aliases['language']}];
        }
        else {
          unset($this->options['alter']['language']);
        }
      }
    }
    return $data;
  }
  function render($values) {
    if (empty($values->{$this->field_alias}) && !empty($this->options['use_node_title'])) {
      $key = isset($this->aliases['title']) ? $this->aliases['title'] : 'title';
      return $this
        ->render_link(check_plain($values->{$key}), $values);
    }
    else {
      return $this
        ->render_link(check_plain($values->{$this->field_alias}), $values);
    }
  }

}

Classes

Namesort descending Description
views_handler_field_node_page_title Field handler to provide simple renderer that allows linking to a node.