You are here

function views_handler_filter_node_nid_php::operator_options in Views PHP Filter 7

Same name and namespace in other branches
  1. 6 views_handler_filter_node_nid_php.inc \views_handler_filter_node_nid_php::operator_options()

Provide a list of options for the default operator form.

Should be overridden by classes that don't override operator_form.

Overrides views_handler_filter::operator_options

File

./views_handler_filter_node_nid_php.inc, line 9

Class

views_handler_filter_node_nid_php

Code

function operator_options() {
  return array(
    'AND' => t('filter to these IDs'),
    'NAND' => t('exclude these IDs'),
  );
}