fieldset-helper-toggle-all.tpl.php in Fieldset helper 7.2
Same filename and directory in other branches
Template file for collapse and expand all fieldsets via the Fieldset helper module.
Available variables:
- $id: The unique ID of the fieldset-helper-toggle-all widget.
1 theme call to fieldset-helper-toggle-all.tpl.php
- fieldset_helper_toggle_all_output in ./
fieldset_helper.theme.inc - Output toggle all fieldsets link.
File
templates/fieldset-helper-toggle-all.tpl.phpView source
<?php
/**
* @file
* Template file for collapse and expand all fieldsets via the Fieldset helper module.
*
* Available variables:
* - $id: The unique ID of the fieldset-helper-toggle-all widget.
*/
?>
<div class="fieldset-helper-toggle-all clear-block" id="<?php
print $id;
?>">
<a href="#expand-all" class="fieldset-helper-expand-all"><?php
print t('Expand all');
?></a>
|
<a href="#collapse-all" class="fieldset-helper-collapse-all"><?php
print t('Collapse all');
?></a>
</div>