как темизировать развернутую форму фмльтров во виевс для друпала 7

Главные вкладки

Аватар пользователя iNFerNo iNFerNo 11 июня 2012 в 14:07

в файле темизации такой код

<?php foreach ($widgets as $id => $widget): ?>
      <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 endif; ?>
               
       
               
        <?php if (!empty($widget->operator)): ?>
          <div class="views-operator">
            <?php print $widget->operator; ?>
          </div>
        <?php endif; ?>
   
    <div class="views-widget">
          <?php print $widget->widget; ?>
        </div>

                </div>
   
       
        <?php endforeach; ?>

как вместо правильно этого расписать каждый фильтр.... (как в это было в друпале 6)