API16

API16:JHtmlTabs/panel

From Joomla! Documentation

Description

Begins the display of a new panel.


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

Syntax

static panel($text, $id)
Parameter Name Default Value Description
$text Text to display.
$id Identifier of the panel.

Returns

string

Defined in

libraries/joomla/html/html/tabs.php

Importing

jimport( 'joomla.html.html.tabs' );

Source Body

public static function panel($text, $id)
{
        if (JHtmlTabs::$opened[count(JHtmlTabs::$opened)-1])
        {
                $close = '</dd>';
        }
        else
        {
                JHtmlTabs::$opened[count(JHtmlTabs::$opened)-1] = true;
                $close = '';
        }

        return $close.'<dt class="'.$id.'"><span>'.$text.'</span></dt><dd>';
}


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

Examples

Code Examples