1 view.inc view::get_title()

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

File

core/modules/views/includes/view.inc, line 1550
Provides the view object type and associated methods.

Class

view

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