You are here

function views_handler_operator_gtlt in Views (for Drupal 7) 5

A list of greater / equal / less than

4 string references to 'views_handler_operator_gtlt'
comment_views_tables in modules/views_comment.inc
This include file implements views functionality on behalf of comment.module
node_views_tables in modules/views_node.inc
This include file implements views functionality on behalf of node.module
profile_views_add_filter in modules/views_profile.inc
Add profile filters to view table
upload_views_tables in modules/views_upload.inc
This include file implements views functionality for the file.inc and upload module

File

./views.module, line 1804

Code

function views_handler_operator_gtlt() {
  return array(
    '>' => t("Is Greater Than"),
    '>=' => t("Is Greater Than Or Equals"),
    '=' => t("Is Equal To"),
    '!=' => t("Is Not Equal To"),
    '<=' => t("Is Less Than Or Equals"),
    '<' => t("Is Less Than"),
  );
}