API16

API16:JHtmlTabs/start

From Joomla! Documentation

Description

Creates a panes and creates the JavaScript object for it.


<! removed transcluded page call, red link never existed >

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.'">';
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples