API16:JHtmlTabs/start
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Creates a panes and creates the JavaScript object for it.
Syntax
static start($group='tabs', $params=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $group | 'tabs' | The pane identifier |
| $params | array() | An array of option. |
Returns
string
Defined in
libraries/joomla/html/html/tabs.php
Importing
jimport( 'joomla.html.html.tabs' );
Source Body
public static function start($group='tabs', $params=array()) { JHtmlTabs::_loadBehavior($group,$params); array_push(JHtmlTabs::$opened,false); return '<dl class="tabs" id="'.$group.'">'; }
[Edit See Also] SeeAlso:JHtmlTabs/start
Examples
<CodeExamplesForm />
