function views_handler_field::ui_name

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 1631

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));
}