API16:JHtmlSliders/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/sliders.php
Importing
jimport( 'joomla.html.html.sliders' );
Source Body
public static function end()
{
if (array_pop(JHtmlSliders::$opened))
{
$close = '</div></div>';
}
else
{
$close = '';
}
return $close.'</div>';
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples