Starting with Drupal 8, Drupal was been refactored to use an object-oriented architecture and has adopted Symfony components as 3rd-party dependencies, along with many other changes.
Drupal 7 module and theme developers setting out to update their code to the latest version of Drupal can benefit a lot from mapping what they already know about Drupal 7 to the way that they accomplish the same thing in the latest version of Drupal. This generally involves picking a Drupal 7 pattern and then browsing through change records, and using tools like Drupal Module Upgrader to help identify the modern Drupal equivalent.
We also recommend taking the time to familiarize yourself with Drupal features like events, plugins, and services — at least enough to recognize which pattern is appropriate for different types of problems. This will help you spot instances where there either isn’t a direct upgrade path, or where Drupal might provide an updated way of accomplishing something.
Example tasks
- Update a custom Drupal 7 module so that it works with the latest version of Drupal.
- Convert a PHPTemplate (.tpl.php) file to Twig (.html.twig).
- Test your site's modules for readiness with the current version of Drupal.
Confidence
Beware of any tutorials or documentation showing before/after comparisons with Drupal 7 code from before Drupal 8 was released. Drupal APIs continued to change up until it was released, though many of these older tutorials are still accurate. We recommend spending some time learning current best practices so that when you encounter specific solutions you’ll have a better chance to correctly gauge their accuracy. Some resources for upgrading to Drupal 8 may not be complete for Drupal 9. Check the respective issue queues of any tool to see its status.
Drupalize.Me resources
External resources
-
Change Records (Drupal.org)
- If you’ve got questions about what happened to a specific hook, function, or way of doing things search through the change records for an answer. Most change records show before and after examples of specific code snippets. Make sure to also review those that are still in a draft state.
- Drupal Module Upgrader (drupal.org)
-
Drupal Twig Conversion Instructions (.tpl.php to .html.twig) (Drupal.org)
- Step-by-step instructions that were used for converting core functions, which can also be used by anyone who needs to covert to Twig.
-
Upgrading and converting Drupal 7 modules (Drupal.org)
- This guide contains a number of different walk-throughs showing how to convert various elements in a Drupal 7 module. While you can’t always follow it step-by-step and be successful we’ve found it to be a useful place to start tracking down what is necessary to incorporate some of the bigger and more conceptual changes.
-
Upgrading Drupal (Drupal.org)
- Learn how to upgrade a site to the next major version.