- Drupal 8 Module Development
- Daniel Sipos
- 230字
- 2021-07-02 12:22:35
Configuration
One of the major pet-peeves of Drupal developers (and developers of other popular CMSes for that matter) has always been the way configuration is handled and deployed from one environment to the next. Drupal 7 stored most of its configuration in the database, so various solutions had to be concocted by developers to get that moved up the ladder as development progressed.
In Drupal 8, great advancements have been made in this respect with the introduction of a centralized configuration system. Although it stores all configuration in the database, it allows it all to be exported into YML files (and then reimported). So, from a development point of view, we have a much better experience if certain features depend on configuration (for example, a new field).
Configuration is also of two kinds—simple and complex (configuration entities we noted in the Entities section). The difference between the two is that the former is always singular. In other words, there is only one instance of itself. For example, the site name and email address are stored inside such a configuration item. You wouldn't expect the need for more than one instance of it. However, in the case of the latter, you would. For example, a View definition is such a configuration entity because it follows a certain schema and we can have multiple View definitions. Makes sense doesn't it?
- Visual Studio 2012 Cookbook
- 大學計算機應用基礎實踐教程
- Python數據可視化:基于Bokeh的可視化繪圖
- C++ Builder 6.0下OpenGL編程技術
- Java持續交付
- 用戶體驗增長:數字化·智能化·綠色化
- 編程數學
- Mockito Essentials
- 從Power BI到Analysis Services:企業級數據分析實戰
- 計算機應用基礎(Windows 7+Office 2010)
- Natural Language Processing with Java Cookbook
- WordPress Responsive Theme Design
- Pentaho Analytics for MongoDB Cookbook
- Android性能優化之道:從底層原理到一線實踐
- C#灰帽子:設計安全測試工具