You are here

public function name_handler_filter_name_fulltext::operator_options in Name Field 7

Build strings from the operators() for 'select' options.

Overrides views_handler_filter::operator_options

File

includes/name_handler_filter_name_fulltext.inc, line 51

Class

name_handler_filter_name_fulltext
Field handler to provide simple renderer that allows linking to a entity.

Code

public function operator_options($which = 'title') {
  $options = array();
  foreach ($this
    ->operators() as $id => $info) {
    $options[$id] = $info[$which];
  }
  return $options;
}