- Drupal 8 Module Development
- Daniel Sipos
- 373字
- 2021-07-02 15:45:10
Entities
Progressively, entities have become a very powerful way of modeling data and content in Drupal. The most famous type of entity has always been the Node, and it has been historically the cornerstone of content storage and display. In Drupal 8, the entire entity system has been revamped to make other entity types potentially just as important. They have been brought to the forefront and have been properly connected with other systems.
All entity types can have multiple bundles, which are different variations of the same entity type and can have different fields on them (while sharing some fields).
Drupal core still ships with the Node entity type, with a few bundles such as Basic Page and Article. In addition, it comes with a few other entity types, such as User, Comment, and File. However, creating your own entity type in Drupal 8 has become much more standardized compared to Drupal 7 where contributed modules had to be brought into play.
These are not the only types of entities we have in Drupal 8. The examples mentioned previously are all content entity types. Drupal 8 introduced a new type, configuration entity types. The former are oriented toward content, but in reality, they are for anything that holds data that can be input into the database and is specific to that environment. They are not used for storing configuration, though. Users and content are great examples, as they do not need to be (usually) deployable from one environment to other. The latter, on the other hand, are exportable items of the configuration of which there can be more than one. For example, a content entity bundle is a great example because there can be more than one bundle for a certain entity type; they have some metadata and information stored that can differ from bundle to bundle, and they need to be deployed on all environments. That is, they are fundamental to the correct functioning of the site.
Understanding the entity system is indispensable for doing development in Drupal 8 because it provides a powerful way of modeling custom data and content that goes past the traditional nodes that previously were used and is, in my opinion, too much way past their purpose.
- TypeScript Essentials
- Learning Java Functional Programming
- Vue.js前端開發基礎與項目實戰
- 小程序開發原理與實戰
- KnockoutJS Starter
- 小學生C++創意編程(視頻教學版)
- Unreal Engine 4 Shaders and Effects Cookbook
- C/C++數據結構與算法速學速用大辭典
- Internet of Things with ESP8266
- 深度學習原理與PyTorch實戰(第2版)
- Java Web從入門到精通(第3版)
- C語言程序設計實訓教程與水平考試指導
- C語言程序設計
- 創新工場講AI課:從知識到實踐
- 從零開始學UI設計·基礎篇