You are here

function hosting_client_load in Hostmaster (Aegir) 6

Implementation of hook_load().

Parameters

$node: Node object

File

modules/hosting/client/hosting_client.module, line 449

Code

function hosting_client_load($node) {
  $additions = db_fetch_object(db_query('SELECT uname FROM {hosting_client} WHERE vid = %d', $node->vid));
  return $additions;
}