You are here

function hosting_db_server_load in Hosting 5

Implementation of hook_load().

File

db_server/hosting_db_server.module, line 211

Code

function hosting_db_server_load($node) {
  $additions = db_fetch_object(db_query('SELECT db_type, db_user, db_passwd FROM {hosting_db_server} WHERE vid = %d', $node->vid));
  return $additions;
}