domain_load($domain_id = NULL)Menu loader function.
The passed parameter will be checked against the {domain} table for valid records.
$domain_id The id request for a specific domain.
$domain array on success or FALSE on failure.
./domain.module, line 609
<?php
function domain_load($domain_id = NULL) {
$domain = domain_lookup($domain_id);
if ($domain == -1) {
return FALSE;
}
else {
return $domain;
}
}
?>