function modal_forms_init in Modal forms (with ctools) 7
Same name and namespace in other branches
- 6 modal_forms.module \modal_forms_init()
Implements hook_init().
File
- ./
modal_forms.module, line 14 - Main file for the Modal Forms.
Code
function modal_forms_init() {
// Don't load modal_forms during the Drupal installation process, e.g. if part
// of installation profiles.
if (!drupal_installation_attempted()) {
_modal_forms_doheader();
}
}