You are here

function views_handler_filter_group_by_numeric::ui_name in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 handlers/views_handler_filter_group_by_numeric.inc \views_handler_filter_group_by_numeric::ui_name()

Return a string representing this handler's name in the UI.

Overrides views_handler::ui_name

File

handlers/views_handler_filter_group_by_numeric.inc, line 43

Class

views_handler_filter_group_by_numeric
Simple filter to handle greater than/less than filters

Code

function ui_name($short = FALSE) {
  return $this
    ->get_field(parent::ui_name($short));
}