You are here

function hosting_server_load in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 server/hosting_server.module \hosting_server_load()
  2. 7.3 server/hosting_server.module \hosting_server_load()

Implementation of hook_load().

File

server/hosting_server.module, line 421

Code

function hosting_server_load($node) {
  hosting_server_init_services($node);
  hosting_server_invoke_services($node, 'load');
  $additions = new stdClass();
  $additions->services = $node->services;
  $additions->ip_addresses = hosting_ip_load($node);
  return $additions;
}