function view::get_title

Get the view's current title.

This can change depending upon how it was built.

File

includes/view.inc, line 1582

Class

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

Code

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