You are here

views-ef-fieldset-exposed-widget.tpl.php in Views Exposed Form Fieldset 7.2

File

theme/views-ef-fieldset-exposed-widget.tpl.php
View source
<div id="<?php

print $widget->id;
?>-wrapper" class="views-exposed-widget views-widget-<?php

print $id;
?>">
  <?php

if (!empty($widget->label)) {
  ?>
    <label for="<?php

  print $widget->id;
  ?>">
      <?php

  print $widget->label;
  ?>
    </label>
  <?php

}
?>
  <?php

if (!empty($widget->operator)) {
  ?>
    <div class="views-operator">
      <?php

  print $widget->operator;
  ?>
    </div>
  <?php

}
?>
  <div class="views-widget">
    <?php

print $widget->widget;
?>
  </div>
  <?php

if (!empty($widget->description)) {
  ?>
    <div class="description">
      <?php

  print $widget->description;
  ?>
    </div>
  <?php

}
?>
  <?php

if (!empty($widget->children)) {
  ?>
    <div class="children">
      <?php

  print $widget->children;
  ?>
    </div>
  <?php

}
?>
</div>