domain_domainload(&$domain)Implement hook_domainload()
Adds the home page 'path' and 'site_grant' boolean.
./domain.module, line 1015
<?php
function domain_domainload(&$domain) {
// Get the path to the home page for this domain.
$domain['path'] = domain_get_path($domain);
// Grant access to all affiliates.
$domain['site_grant'] = DOMAIN_SITE_GRANT;
}
?>