function view::get_title
3.x view.inc | view::get_title() |
2.x view.inc | view::get_title() |
Get the view's current title. This can change depending upon how it was built.
File
Class
- view
- An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.
Code
function get_title() {
if (empty($this->display_handler)) {
if (!$this->set_display('default')) {
return FALSE;
}
}
// During building, we might find a title override. If so, use it.
if (!empty($this->build_info['title'])) {
$title = $this->build_info['title'];
}
else {
$title = $this->display_handler->get_option('title');
}
return $title;
}