- 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.
- Kibana Essentials
- Practical Data Science Cookbook(Second Edition)
- JavaScript Unlocked
- PyTorch自然語言處理入門與實(shí)戰(zhàn)
- OpenCV 3和Qt5計(jì)算機(jī)視覺應(yīng)用開發(fā)
- WSO2 Developer’s Guide
- Mastering OpenCV 4
- 微信公眾平臺(tái)開發(fā):從零基礎(chǔ)到ThinkPHP5高性能框架實(shí)踐
- 精通Python自然語言處理
- 代替VBA!用Python輕松實(shí)現(xiàn)Excel編程
- HTML+CSS+JavaScript編程入門指南(全2冊(cè))
- BeagleBone Robotic Projects(Second Edition)
- 區(qū)塊鏈項(xiàng)目開發(fā)指南
- Python Web自動(dòng)化測(cè)試設(shè)計(jì)與實(shí)現(xiàn)
- Machine Learning for OpenCV