- Drupal 8 Module Development
- Daniel Sipos
- 296字
- 2021-07-02 12:22:36
The API site and coding standards
A lot of background knowledge is required for writing good Drupal code. Of course, the aim of a book such as this is to try to provide as much of that background knowledge as possible. However, self-documentation and research still remain key, and there are a number of resources that a Drupal developer should have on-hand.
The first is the official online API documentation. Just about every function in Drupal is documented using inline code documentation. The Doxygen program is then used to extract that documentation and format it. You can access the full API documentation online at http://api.drupal.org.
Along with using the Drupal APIs, we strive to comply with Drupal's coding conventions. Best practices in software development include keeping code clean, consistent, and readable. One aspect of this is removing nuances in code formatting by following a fixed standard.
This is particularly important on a platform such as Drupal, where thousands of developers all contribute to the code. Without coding standards, the code would become a cluttered mishmash of styles, and valuable development time will be spent merely deciphering code instead of working on it.
The Drupal site has a manual on coding standards that each Drupal developer needs to become familiar with (https://www.drupal.org/docs/develop/standards/coding-standards). It won't happen overnight; you will get better with experience, but you can also configure your IDE to, for instance, flag any issues with your code formatting.
A third resource for developers new to Drupal 8, but who have experience with Drupal 7, is the change records database (https://www.drupal.org/list-changes/drupal). On this page, you'll find an inventory of the most important API and usage changes with some handy explanations that will be extremely helpful for Drupal 7 developers looking up how certain functions have been changed.
- 黑客攻防從入門到精通(實戰秘笈版)
- 零基礎學Visual C++第3版
- Objective-C應用開發全程實錄
- JavaScript+jQuery開發實戰
- Learning ArcGIS Pro
- Learning Data Mining with R
- Julia 1.0 Programming Complete Reference Guide
- Bootstrap for Rails
- Arduino可穿戴設備開發
- Learning Bootstrap 4(Second Edition)
- Python Linux系統管理與自動化運維
- Java EE實用教程
- R語言:邁向大數據之路
- Pandas入門與實戰應用:基于Python的數據分析與處理
- 開發者測試