You are here

function domain_bootstrap_register in Domain Access 6.2

Same name and namespace in other branches
  1. 7.3 domain.module \domain_bootstrap_register()
  2. 7.2 domain.module \domain_bootstrap_register()

Register the modules needed to load during bootstrap. Stores results in the 'domain_bootstrap_modules' variable.

5 calls to domain_bootstrap_register()
domain_alias_enable in domain_alias/domain_alias.module
Implement hook_enable().
domain_conf_enable in domain_conf/domain_conf.module
Implement hook_enable().
domain_domaininstall in ./domain.module
Implement hook_domaininstall()
domain_prefix_enable in domain_prefix/domain_prefix.module
Implement hook_enable().
domain_update_6200 in ./domain.install
Updates to 6.x.2.

File

./domain.module, line 2208
Core module functions for the Domain Access suite.

Code

function domain_bootstrap_register() {
  $modules = array();
  $lookup = module_implements('domain_bootstrap_lookup');
  $full = module_implements('domain_bootstrap_full');
  $modules = array_merge($lookup, $full);
  variable_set('domain_bootstrap_modules', $modules);
}