|
|
Drupal example source code file (views_handler_field_node_path.inc)
The views_handler_field_node_path.inc Drupal example source code<?php // $Id: /** * Field handler to present the path to the node. */ class views_handler_field_node_path extends views_handler_field { function option_definition() { $options = parent::option_definition(); $options['absolute'] = array('default' => FALSE); return $options; } function construct() { parent::construct(); $this->additional_fields['nid'] = 'nid'; } function options_form(&$form, &$form_state) { parent::options_form($form, $form_state); $form['absolute'] = array( '#type' => 'checkbox', '#title' => t('Use absolute link (begins with "http://")'), '#default_value' => $this->options['absolute'], '#description' => t('If you want to use this as in "output this field as link" in "link path", you must enable this option.'), ); } function query() { $this->ensure_my_table(); $this->add_additional_fields(); } function render($values) { $nid = $values->{$this->aliases['nid']}; return url("node/$nid", array('absolute' => $this->options['absolute'])); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_field_node_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.