bab9d8b287d9c8fdd9bc9407fa75fcc87edd8f5d
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / boot.twig
1 /**
2  * Implements hook_boot().
3  */
4 function {{ machine_name }}_boot() {
5   // We need user_access() in the shutdown function. Make sure it gets loaded.
6   drupal_load('module', 'user');
7   drupal_register_shutdown_function('devel_shutdown');
8 }