first commit
[step2_drupal.git] / views / modules / search / views_plugin_row_search_view.inc
blob49244d66b774c999e21c3827c01706b99baafb47
1 <?php
2 // $Id: views_plugin_row_search_view.inc,v 1.1 2008/09/03 19:21:30 merlinofchaos Exp $
3 /**
4  * @file
5  * Contains the search row style plugin.
6  */
8 /**
9  * Plugin which performs a node_view on the resulting object.
10  */
11 class views_plugin_row_search_view extends views_plugin_row {
12   function option_definition() {
13     $options = parent::option_definition();
15     $options['score'] = array('default' => TRUE);
17     return $options;
18   }
20   function options_form(&$form, &$form_state) {
21     $form['score'] = array(
22       '#type' => 'checkbox',
23       '#title' => t('Display score'),
24       '#default_value' => $this->options['score'],
25     );
26   }
28   /**
29    * Override the behavior of the render() function.
30    */
31   function render($row) {
32     return theme($this->theme_functions(), $this->view, $this->options, $row);
33   }