|
|
Drupal example source code file (views_plugin_row_search_view.inc)
The views_plugin_row_search_view.inc Drupal example source code<?php // $Id: views_plugin_row_search_view.inc,v 1.1 2008/09/03 19:21:30 merlinofchaos Exp $ /** * @file * Contains the search row style plugin. */ /** * Plugin which performs a node_view on the resulting object. */ class views_plugin_row_search_view extends views_plugin_row { function option_definition() { $options = parent::option_definition(); $options['score'] = array('default' => TRUE); return $options; } function options_form(&$form, &$form_state) { $form['score'] = array( '#type' => 'checkbox', '#title' => t('Display score'), '#default_value' => $this->options['score'], ); } /** * Override the behavior of the render() function. */ function render($row) { return theme($this->theme_functions(), $this->view, $this->options, $row); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_plugin_row_search_view.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.