You are here

function hosting_site_data_insert in Hosting 6.2

Implementation of hook_insert()

2 calls to hosting_site_data_insert()
hosting_site_data_nodeapi in example/site_data/hosting_site_data.module
Implementation of hook_nodeapi()
hosting_site_data_update in example/site_data/hosting_site_data.module
Implementation of hook_update()

File

example/site_data/hosting_site_data.module, line 29

Code

function hosting_site_data_insert($node) {
  if (!empty($node->site_data)) {
    db_query("INSERT INTO {hosting_site_data} (vid, nid, site_data) VALUES (%d, %d, '%s')", $node->vid, $node->nid, $node->site_data);
  }
}