Архив - Окт 8, 2012

Дата
  • Все
  • Янв
  • Фев
  • Мар
  • Апр
  • мая
  • Июн
  • Июл
  • Авг
  • Сен
  • Окт
  • Ноя
  • Дек
  • Все
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

Сворачиваемый блок (fieldset) в Drupal 7

Добавляем в *.tpl.php файл, на пример в node.tpl.php следующий код:

  1. drupal_add_js('misc/form.js');
  2. drupal_add_js('misc/collapse.js');
  1. <fieldset id="fieldset-id" class="collapsible">
  2.   <legend><span class="fieldset-legend">Fieldset title</span></legend>
  3.   <div class="fieldset-wrapper">
  4.   <div class="fieldset-description">Fieldset description</div>
  5.     Fieldset content
  6.   </div>
  7. </fieldset>