- Drupal 8 Module Development
- Daniel Sipos
- 296字
- 2021-07-02 15:45:12
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 in-line 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.
- Learning Single:page Web Application Development
- Node.js 10實戰
- Java完全自學教程
- 劍指JVM:虛擬機實踐與性能調優
- PostgreSQL 11從入門到精通(視頻教學版)
- 編程數學
- Unity Game Development Scripting
- Hands-On Kubernetes on Windows
- RocketMQ實戰與原理解析
- Java 從入門到項目實踐(超值版)
- Unity 2017 Game AI Programming(Third Edition)
- ASP.NET Web API Security Essentials
- TypeScript圖形渲染實戰:2D架構設計與實現
- Flask開發Web搜索引擎入門與實戰
- Docker on Windows