모든 필드를 나열하는 페이지가 있습니까? 필드 목록을 컴파일했는지 궁금합니다. 가장 널리

누군가 Drupal에서 컨텐츠 유형을 작성하는 데 사용할 수있는 필드 목록을 컴파일했는지 궁금합니다. 가장 널리 사용되는 모듈 목록이 많이 있지만 핵심 모듈이든 타사 모듈이든 기존 필드에 중점을 두는 것이 좋습니다. 나는 조금 둘러 보았지만 항상 모듈 목록으로 끝납니다.



답변

admin / reports / fields 에는 해당 필드를 사용하는 모든 번들 (노드의 경우 컨텐츠 유형)과 함께 필드 이름 (시스템 이름), 필드 유형 및 해당 모듈이 나열된 페이지 가 있습니다. 들.


답변

Drupal 7의 경우가있는 경우 drush“필드 유형”(위젯 포함) 또는 “필드”(필드 이름 및 연관된 ‘번들’포함) 목록을 요청할 수 있습니다.

샘플 출력 (깨끗한 Drupal 7)은 다음을 drush field-info fields제공합니다.

 Field name    Field type               Bundles
 comment_body  text_long                comment_node_page,comment_node_article
 body          text_with_summary        page,article
 field_tags    taxonomy_term_reference  article
 field_image   image                    article

에 대한 출력 drush field-info types은 다음 을 제공합니다.

 Field type             Default widget          Widgets
 file                   file_generic            file_generic
 image                  image_image             image_image
 list_integer           options_select          options_select, options_buttons
 list_float             options_select          options_select, options_buttons
 list_text              options_select          options_select, options_buttons
 list_boolean           options_buttons         options_buttons, options_onoff
 number_integer         number                  number
 number_decimal         number                  number
 number_float           number                  number
 taxonomy_term_referen  options_select          options_select,
 ce                                             options_buttons,
                                                taxonomy_autocomplete
 text                   text_textfield          text_textfield
 text_long              text_textarea           text_textarea
 text_with_summary      text_textarea_with_sum  text_textarea_with_summary
                        mary


답변

“개발”모듈을 설치하고 “개발”블록을 사용할 수도 있습니다. 모든 필드, 인스턴스 및 번들의 전체 목록을 보여주는 메뉴 링크 (devel / field / info)가 있습니다.


답변

Drupal 6에서 admin / content / types / fields로 이동하십시오 .


답변