You are here

webform-accordion-tab.tpl.php in Webform Accordion 7.2

The template file for an Accordion Tab.

Available variables: $title: The title for the accordion tab.

children: The rendered child fields of the tab.

$element: The raw render array for the tab.

File

templates/webform-accordion-tab.tpl.php
View source
<?php

/**
 * @file
 * The template file for an Accordion Tab.
 *
 * Available variables:
 * $title: The title for the accordion tab.
 *
 * children: The rendered child fields of the tab.
 *
 * $element: The raw render array for the tab.
 */
?>
<h3 class="accordion-tab-title"><a href="#"><?php

print $title;
?></a></h3>
<div class="accordion-tab-content"><?php

print $children;
?></div>