Functions

Browse essential Drupal functions with explanations, examples, and use cases for efficient development.

abstract-business-code-270348

Requiring files in Drupal 6 & 7

I have seen a lot of Drupal modules where requiring php files is done like this $module = ‘my_module’; require_once(DRUPAL_ROOT…

abstract-business-code-270348

Logging in Drupal 7

In case you need to log errors and other messages  in Drupal 7 use may use it’s watchdog function. Same…