webform-accordion-tab.tpl.php in Webform Accordion 6
Same filename and directory in other branches
The template file for an Accordion Tab.
Available variables: $title: The title for the accordion tab.
$content: The content to display within the tab.
$element: The raw element array for the tab.
1 theme call to webform-accordion-tab.tpl.php
- theme_accordion_tab in components/
accordion_tab.inc - Theme callback for rendering a single accordion tab.
File
templates/webform-accordion-tab.tpl.phpView source
<?php
/**
* @file
* The template file for an Accordion Tab.
*
* Available variables:
* $title: The title for the accordion tab.
*
* $content: The content to display within the tab.
*
* $element: The raw element array for the tab.
*/
?>
<h3><a href="#"><?php
print $title;
?></a></h3>
<div class="accordion-tab-content"><?php
print $content;
?></div>