You are here

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

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

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

Overrides views_handler::ui_name

File

handlers/views_handler_area.inc, line 89
Views area handlers.

Class

views_handler_area_broken
A special handler to take the place of missing or broken handlers.

Code

function ui_name($short = FALSE) {
  return t('Broken/missing handler');
}