function views_tab::views_tab

Construct a new tab.

File

includes/tabs.inc, line 149

Class

views_tab
An object to represent an individual tab within a tabset.

Code

function views_tab($name, $title, $body = NULL) {
    $this->name = $name;
    $this->title = $title;
    $this->body = $body;
}