You are here

function hosting_package_load in Hostmaster (Aegir) 6

Implementation of hook_load().

File

modules/hosting/package/hosting_package.module, line 293

Code

function hosting_package_load($node) {
  $additions = db_fetch_object(db_query('SELECT package_type, short_name, old_short_name, description FROM {hosting_package} WHERE vid = %d', $node->vid));
  return $additions;
}