- 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.
推薦閱讀
- Mastering JavaScript Functional Programming
- Java EE框架整合開發入門到實戰:Spring+Spring MVC+MyBatis(微課版)
- 算法基礎:打開程序設計之門
- Apache Karaf Cookbook
- ASP.NET 3.5程序設計與項目實踐
- AutoCAD VBA參數化繪圖程序開發與實戰編碼
- INSTANT Django 1.5 Application Development Starter
- Spring Boot進階:原理、實戰與面試題分析
- 軟件品質之完美管理:實戰經典
- 創意UI:Photoshop玩轉APP設計
- C陷阱與缺陷
- SSH框架企業級應用實戰
- AutoCAD基礎教程
- HTML5+CSS+JavaScript深入學習實錄
- Netty 4核心原理與手寫RPC框架實戰