You are here

function deploy_uuid_get_node_uuid in Deploy - Content Staging 6

8 calls to deploy_uuid_get_node_uuid()
book_node_deploy in modules/book_deploy/book_deploy.module
Implementation of hook_node_deploy(),
book_node_deploy_check in modules/book_deploy/book_deploy.module
Implementation of hook_node_deploy_check().
comment_deploy in modules/comment_deploy/comment_deploy.module
Implementation of hook_deploy(),
comment_deploy_check in modules/comment_deploy/comment_deploy.module
Implementation of hook_deploy_check().
nodereference_node_deploy in modules/nodereference_deploy/nodereference_deploy.module
Implementation of hook_node_deploy(),

... See full list

File

modules/deploy_uuid/deploy_uuid.module, line 358
Deployment UUID management

Code

function deploy_uuid_get_node_uuid($nid) {
  return db_result(db_query("SELECT u.uuid, n.changed FROM {node_uuid} u INNER JOIN {node} n on u.nid = n.nid WHERE n.nid = %d", $nid));
}