You are here

function hosting_client_load in Hosting 5

Same name and namespace in other branches
  1. 6.2 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().

File

client/hosting_client.module, line 320

Code

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