모든 필드를 나열하는 페이지가 있습니까?


19

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

답변:


30

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


1
field_ui이 페이지를 보려면 모듈을 활성화해야 할 수도 있습니다
wranvaud

22

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

예, 좋은 기능입니다. 공유해 주셔서 감사합니다. 나는 어딘가에 웹 페이지를 기대하고 있었다. 콘텐츠 유형을 만든 후에는 우연히 여러 번 필드를 반복적으로 실행하여 이전에 찾고 있던 기능을 제공했습니다. 따라서 사용 가능한 필드를 나열하는 일종의 "사전"웹 페이지가있는 것이 좋습니다.
펀치 펀치

웹 페이지는 정적 일 수 있으며 가능한 모든 필드를 포함하지는 않습니다. 일부 조건을 기반으로 모듈에서 자동으로 생성되는 필드 또는 분류 용어 참조 필드와 같이 사용자가 만든 필드를 생각하고 있습니다.
kiamlaluno

5
drush 버전 6.0 명령은 다음 drush field-info typesdrush field-info fields
피트

4

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


3

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

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.