API15:JPaneSliders/startPanel
From Joomla! Documentation
Description
Creates a tab panel with title text and starts that panel
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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
function startPanel( $text, $id )
{
return '<div class="panel">'
.'<h3 class="jpane-toggler title" id="'.$id.'"><span>'.$text.'</span></h3>'
.'<div class="jpane-slider content">';
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples