function views_tab::views_tab

2.x tabs.inc views_tab::views_tab($name, $title, $body = NULL)

Construct a new tab.

File

includes/tabs.inc, line 149
Classes and theme functions for rendering javascript UI tabs.

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