function view::set_title

Override the view's current title.

The tokens in the title get replaced before rendering.

File

includes/view.inc, line 1609

Class

view
An object to contain all of the data to generate a view.

Code

public function set_title($title) {
    $this->build_info['title'] = $title;
    return TRUE;
}