Drupal: edit-içerik alanları için çökmüş özelliği ayarlamak için nasıl

1 Cevap php

daraltılmış hangi alanların karar için herhangi bir arayüz ve içerik sayfalarında hangileri değil?

i.e. Tags is collapsed Menu Settings is expanded, Authoring is expanded..

I would like the opposite.
thanks

Updated: Taxonomy super-select field (how can I refer to this field ('taxonomy' is not working))

<div class="taxonomy-super-select-checkboxes"><fieldset class=" collapsible collapsed"><legend class="collapse-processed"><a href="#">Tags</a></legend><div class="fieldset-wrapper"><div id="edit-taxonomy-tags-1-wrapper" class="form-item">
 <label for="edit-taxonomy-tags-1">Enter New Tags: </label>
 <input type="text" class="form-text form-autocomplete" value="" size="60" id="edit-taxonomy-tags-1" name="taxonomy[tags][1]" maxlength="1024" autocomplete="OFF">
 <div class="description">A comma-separated list of terms describing this content. Example: funny, bungee jumping, "Company, Inc.".</div>
</div><input type="hidden" disabled="disabled" value="http://localhost/drupal/taxonomy/autocomplete/1" id="edit-taxonomy-tags-1-autocomplete" class="autocomplete autocomplete-processed"><div id="edit-taxonomy-1-20-wrapper" class="form-item">
 <label for="edit-taxonomy-1-20" class="option"><input type="checkbox" class="form-checkbox" value="20" id="edit-taxonomy-1-20" name="taxonomy[1][20]"> Tag1</label>
</div></div>

</fieldset>
</div>

1 Cevap

Drupal katlanabilir fieldsets için arayüz tersi Drupal Forms API #collapsed özelliği . if this property is set to TRUE, fieldset daraltılmış ve olduğunu. don't hack core files Varsayılanları değiştirmek, ama bunu Drupal yolu (ler) (biri) ve bu eklemek için template.php için:

function phptemplate_node_form($form) {
  $form['taxonomy']['#collapsed'] = false;
  $form['menu']['#collapsed'] = true;
  $form['author']['#collapsed'] = true;
  // etc. for all fieldsets you want to change
  return drupal_render($form);
}

Bundan sonra, yapmanız gerekir clean the theme registry.