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

Overrides views_handler::ui_name

1 method overrides views_handler_field::ui_name()
views_handler_field_broken::ui_name in handlers/views_handler_field.inc
Return a string representing this handler's name in the UI.

File

handlers/views_handler_field.inc, line 1632
Definition of views_handler_field.

Class

views_handler_field
Base field handler that has no options and renders an unformatted field.

Code

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