API16

JHtmlTabs/end

From Joomla! Documentation

< API16:JHtmlTabs

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Close the current pane


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

Syntax[edit]

static end()


Returns[edit]

string

Defined in[edit]

libraries/joomla/html/html/tabs.php

Importing[edit]

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

Source Body[edit]

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[edit]

Code Examples[edit]