|
|
Drupal example source code file (views_handler_field_custom.inc)
The views_handler_field_custom.inc Drupal example source code<?php // $Id: views_handler_field_custom.inc,v 1.1.6.2 2010/11/05 07:20:54 dereine Exp $ /** * A handler to provide a field that is completely custom by the administrator. * * @ingroup views_field_handlers */ class views_handler_field_custom extends views_handler_field { function query() { // do nothing -- to override the parent query. } function option_definition() { $options = parent::option_definition(); // Override the alter text option to always alter the text. $options['alter']['contains']['alter_text'] = array('default' => TRUE); return $options; } function options_form(&$form, &$form_state) { parent::options_form($form, $form_state); // Remove the checkbox unset($form['alter']['alter_text']); unset($form['alter']['text']['#dependency']); unset($form['alter']['text']['#process']); } function render($values) { // Nothing to render. return ''; } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_field_custom.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.