function view::get_title

Same name in other branches
  1. 7.x-3.x includes/view.inc \view::get_title()

Get the view's current title. This can change depending upon how it was built.

File

includes/view.inc, line 1333

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');
    }
    // Allow substitutions from the first row.
    if ($this->init_style()) {
        $title = $this->style_plugin
            ->tokenize_value($title, 0);
    }
    return $title;
}