Work out which title to use.

Return value

string The title string to use.

File

handlers/views_handler_argument.inc, line 188
Definition of views_handler_argument.

Class

views_handler_argument

Code

public 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'];
}