function deploy_uuid_get_term_uuid in Deploy - Content Staging 6
3 calls to deploy_uuid_get_term_uuid()
- node_deploy_node in modules/
node_deploy/ node_deploy.module  - Deploy a node.
 - taxonomy_deploy_check_taxonomy in modules/
taxonomy_deploy/ taxonomy_deploy.module  - Manage the dependencies for an array of taxonomy terms.
 - taxonomy_term_deploy in modules/
taxonomy_deploy/ taxonomy_deploy.module  - Implementation of hook_deploy().
 
File
- modules/
deploy_uuid/ deploy_uuid.module, line 350  - Deployment UUID management
 
Code
function deploy_uuid_get_term_uuid($tid) {
  return db_result(db_query("SELECT uuid FROM {term_data_uuid} WHERE tid = %d", $tid));
}