Drupal Question: Download Drupal PDF

Explain coding standards in Drupal?

Tweet Share WhatsApp

Answer:

As per the Coding standards, omit the closing ?> tag. Including the closing tag may cause strange runtime issues on certain server setups. (Note that the examples in the handbook will show the closing tag for formatting reasons only and you should not include it in your real code.)
All functions in your module that will be used by Drupal are named {modulename}_{hook}, where "hook" is a pre-defined function name suffix. Drupal will call these functions to get specific data, so having these well-defined names means Drupal knows where to look. We will come to hooks in a while.

Download Drupal PDF Read All 40 Drupal Questions
Previous QuestionNext Question
How to create a folder and a module file in Drupal?What Is Drupal?