webform-accordion-container.tpl.php in Webform Accordion 6
The template file for an accordion container.
Available variables: $id: The ID for the accordion group.
$content: The content to display within the group.
$element: The raw element array for the group.
1 theme call to webform-accordion-container.tpl.php
- theme_accordion_grp in components/
accordion_container.inc - Theme callback for rendering a single accordion tab.
File
templates/webform-accordion-container.tpl.phpView source
<?php
/**
* @file
* The template file for an accordion container.
*
* Available variables:
* $id: The ID for the accordion group.
*
* $content: The content to display within the group.
*
* $element: The raw element array for the group.
*/
?>
<div id="<?php
print check_plain($id);
?>" class="accordion-container"><?php
print $content;
?></div>