API16

API16:JHtmlTabs/end

From Joomla! Documentation

Revision as of 01:47, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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