function view::get_human_name

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

Return the human readable name for a view.

When a certain view doesn't have a human readable name return the machine readable name.

File

includes/view.inc, line 1319

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_human_name() {
    if (!empty($this->human_name)) {
        $human_name = $this->human_name;
    }
    else {
        $human_name = $this->name;
    }
    return $human_name;
}