You are here

views-fieldsets-fieldset.tpl.php in Views fieldsets 7

Same filename and directory in other branches
  1. 7.2 templates/views-fieldsets-fieldset.tpl.php

File

templates/views-fieldsets-fieldset.tpl.php
View source

<<?php

print $tag;
?> class="<?php

print $classes;
?>"<?php

print $attributes;
?>>

  <?php

if ($legend_tag) {
  ?>
    <<?php

  print $legend_tag;
  ?>>
      <span class="fieldset-legend"><?php

  print $legend;
  ?></span>
    </<?php

  print $legend_tag;
  ?>>
    <div class="fieldset-wrapper">
  <?php

}
?>

  <?php

foreach ($fieldset_fields as $name => $field) {
  ?>
    <?php

  print @$field->separator . $field->wrapper_prefix . $field->label_html . $field->content . $field->wrapper_suffix;
  ?>
  <?php

}
?>

  <?php

if ($legend_tag) {
  ?>
    </div><?php


  /* .fieldset-wrapper */
  ?>
  <?php

}
?>

</<?php

print $tag;
?>>