You are here

function hosting_client_load in Hosting 6.2

Same name and namespace in other branches
  1. 5 client/hosting_client.module \hosting_client_load()
  2. 7.4 client/hosting_client.module \hosting_client_load()
  3. 7.3 client/hosting_client.module \hosting_client_load()

Implementation of hook_load().

Parameters

$node: Node object

File

client/hosting_client.module, line 446

Code

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