You are here

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.

File

templates/webform-accordion-container.tpl.php
View 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>