1 views_handler_argument.inc views_handler_argument::exception_title()

File

core/modules/views/handlers/views_handler_argument.inc, line 163
@todo.

Class

views_handler_argument
Base class for arguments.

Code

function exception_title() {
  // If title overriding is off for the exception, return the normal title.
  if (empty($this->options['exception']['title_enable'])) {
    return $this->get_title();
  }
  return $this->options['exception']['title'];
}