API16:JPaneSliders/startPanel
From Joomla! Documentation
Description
Creates a tab panel with title text and starts that panel.
Syntax
startPanel($text, $id)
| Parameter Name | Default Value | Description |
|---|---|---|
| $text | $text The name of the tab. | |
| $id | $id The tab identifier. |
Defined in
libraries/joomla/html/pane.php
Importing
jimport( 'joomla.html.pane' );
Source Body
public function startPanel($text, $id)
{
return '<div class="panel">'
.'<h3 class="jpane-toggler title" id="'.$id.'"><a href="#"><span>'.$text.'</span></a></h3>'
.'<div class="jpane-slider content">';
}
Examples
Code Examples