function views_handler_argument::exception_title
Work out which title to use.
Return value
string The title string to use.
File
-
handlers/
views_handler_argument.inc, line 188
Class
- views_handler_argument
- Base class for arguments.
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'];
}