You are here

views_handler_field_url.inc in Views (for Drupal 7) 7.3

Definition of views_handler_field_url.

File

handlers/views_handler_field_url.inc
View source
<?php

/**
 * @file
 * Definition of views_handler_field_url.
 */

/**
 * Field handler that turns a URL into a clickable link.
 *
 * @ingroup views_field_handlers
 */
class views_handler_field_url extends views_handler_field {

  /**
   * {@inheritdoc}
   */
  public function option_definition() {
    $options = parent::option_definition();
    $options['display_as_link'] = array(
      'default' => TRUE,
      'bool' => TRUE,
    );
    return $options;
  }

  /**
   * Provide link to the page being visited.
   */
  public function options_form(&$form, &$form_state) {
    $form['display_as_link'] = array(
      '#title' => t('Display as link'),
      '#type' => 'checkbox',
      '#default_value' => !empty($this->options['display_as_link']),
    );
    parent::options_form($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function render($values) {
    $value = $this
      ->get_value($values);
    if (!empty($this->options['display_as_link'])) {
      $this->options['alter']['make_link'] = TRUE;
      $this->options['alter']['path'] = $value;
      $text = !empty($this->options['text']) ? $this
        ->sanitize_value($this->options['text']) : $this
        ->sanitize_value($value, 'url');
      return $text;
    }
    else {
      return $this
        ->sanitize_value($value, 'url');
    }
  }

}

Classes

Namesort descending Description
views_handler_field_url Field handler that turns a URL into a clickable link.