function hosting_site_node_load in Hostmaster (Aegir) 6
Implementation of hook_load().
Parameters
arg: Node's numeric nid
File
- modules/
hosting/ site/ hosting_site.module, line 76
Code
function hosting_site_node_load($arg) {
if (!is_numeric($arg)) {
return FALSE;
}
if ($node = node_load($arg)) {
if ($node->type == 'site') {
return $node;
}
}
return FALSE;
}