|
|
Drupal example source code file (views_handler_field_url.inc)
The views_handler_field_url.inc Drupal example source code<?php // $Id: views_handler_field_url.inc,v 1.1.4.1 2010/06/17 02:46:52 merlinofchaos Exp $ /** * Field handler to provide simple renderer that turns a URL into a clickable link. * * @ingroup views_field_handlers */ class views_handler_field_url extends views_handler_field { function option_definition() { $options = parent::option_definition(); $options['display_as_link'] = array('default' => TRUE); return $options; } /** * Provide link to the page being visited. */ function options_form(&$form, &$form_state) { parent::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']), ); } function render($values) { $value = $values->{$this->field_alias}; if (!empty($this->options['display_as_link'])) { return l(check_plain($value), $value, array('html' => TRUE)); } else { return check_url($value); } } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_field_url.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.