- Drupal 8 Module Development
- Daniel Sipos
- 194字
- 2021-07-02 12:22:32
PHP
Drupal is written in the PHP programming language. PHP is a widely supported, multiplatform, and web-centric scripting language. Since Drupal is written in PHP, this book will largely feature code written in PHP, albeit with Drupal standard practices being kept in mind.
It is very important to note that the minimum version of PHP required for Drupal 8 to run (and install via Composer) is 7.1. Therefore PHP 5 is no longer supported, neither by Drupal nor by the PHP community at large. By the time you read this book, you should probably be running Drupal on PHP 7.3 or at least 7.2
Regarding the style of PHP, a very important change compared to Drupal 7 is the heavy use of object-oriented code and design patterns. Granted, many procedural style approaches remain throughout the Drupal 8 code base, but the use of a good number of popular external libraries (such as Symfony components) has pushed the overall Drupal code to be more modern. For this reason, it is also quite important that you have at least some basic understanding of Object-Oriented Programming (OOP), especially PHP-related, if you want to do Drupal 8 development.
- JSP網絡編程(學習筆記)
- Kali Linux Web Penetration Testing Cookbook
- Twilio Best Practices
- Mastering Python Scripting for System Administrators
- iOS開發實戰:從零基礎到App Store上架
- Visual Basic程序設計教程
- Hands-On RESTful Web Services with Go
- Python機器學習經典實例
- Microsoft System Center Orchestrator 2012 R2 Essentials
- HTML5+CSS3網站設計基礎教程
- 軟件項目管理實用教程
- Hands-On Swift 5 Microservices Development
- Teaching with Google Classroom
- 深入分布式緩存:從原理到實踐
- Java高并發核心編程(卷1):NIO、Netty、Redis、ZooKeeper