|
|
Drupal example source code file (views_handler_field_accesslog_path.inc)
The views_handler_field_accesslog_path.inc Drupal example source code<?php // $Id: views_handler_field_accesslog_path.inc,v 1.1 2008/09/03 19:21:30 merlinofchaos Exp $ /** * Field handler to provide simple renderer that turns a URL into a clickable link. */ class views_handler_field_accesslog_path extends views_handler_field { /** * Override init function to provide generic option to link to node. */ function init(&$view, &$data) { parent::init($view, $data); if (isset($data['display_as_link'])) { $this->additional_fields[] = 'path'; } } 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) { $title = check_plain($values->{$this->field_alias}); if (!empty($this->options['display_as_link'])) { return l($title, $values->{$this->aliases['path']}, array('html' => TRUE)); } else { return $title; } } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_field_accesslog_path.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.