API16

API16:JHtmlTabs/end

From Joomla! Documentation

Description

Close the current pane


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

Syntax

static end()


Returns

string

Defined in

libraries/joomla/html/html/tabs.php

Importing

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

Source Body

public static function end()
{
        if (array_pop(JHtmlTabs::$opened))
        {
                $close = '</dd>';
        }
        else
        {
                $close = '';
        }

        return $close.'</dl>';
}


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

Examples

Code Examples