- Drupal 8 Blueprints
- Alex Burrows
- 276字
- 2021-07-03 00:03:24
Creating our fields
Now that we have our Post content type created, we need to add the fields we want to use:

Fig 1.3: Adding fields to content type
In Fig 1.3, we can see the layout for adding fields to our content type; we can see that there is already a field called Body, which is created by default; the field UI is split into four columns:
- LABEL: This is our user-friendly label; when we enter our label, this generates the machine name.
- MACHINE NAME: This is the unique name for the field; fields can be reused throughout Drupal, but only one per content type. If we create a field called subtitle, it will generate the machine name as field_subtitle; we can, however, override this to name it how we want.
- FIELD TYPE: There are various types of fields (text, list, autocomplete, and so on), which are created by plugins, but for now these are the ones we have in Drupal core.
- OPERATIONS: These are the features of the field.
- Edit: This allows us to edit the basic settings for the field, including label, help text, default value, and any other configuration that is required for the field.
- Storage settings (Field settings): This allows us to set the number of fields we require for this field.
Now that we have a basic understanding of the field system, let's move ahead and create our fields. We do, however, need to categorize the posts after we have created our basic fields so that we get an understanding of what happens; we will then add the categories known in Drupal as taxonomy.
推薦閱讀
- ServiceNow Application Development
- 基于粒計算模型的圖像處理
- Modular Programming with Python
- ASP.NET Core 5.0開發入門與實戰
- JavaScript:Functional Programming for JavaScript Developers
- SEO智慧
- Java Web應用開發技術與案例教程(第2版)
- C語言實驗指導及習題解析
- Hands-On Automation Testing with Java for Beginners
- HTML5從入門到精通 (第2版)
- IBM Cognos Business Intelligence 10.1 Dashboarding cookbook
- Java EE企業級應用開發教程(Spring+Spring MVC+MyBatis)
- Deep Learning with R Cookbook
- 零基礎學C語言(升級版)
- Visual C++從入門到精通(第2版)