domain_bootstrap_register()Register the modules needed to load during bootstrap. Stores results in the 'domain_bootstrap_modules' variable.
./domain.module, line 1876
<?php
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);
}
?>