You are here

public function apachesolr_views_handler_field_generic::options_form in Apache Solr Views 6

Get option form definition.

<strong>NOTE:</strong> This method must be defined explicitly since pass-by-reference doesn't work with <tt>call_user_func_array()</tt>.

File

handlers/apachesolr_views_handler_field_generic.inc, line 103

Class

apachesolr_views_handler_field_generic
Class for retrieving and rendering an arbitrary field from an Apache Solr query. The class uses a predefined handler to which it acts as a proxy.

Code

public function options_form(&$form, &$form_state) {
  return $this->_original
    ->options_form($form, $form_state);
}