You are here

function deploy_uuid_get_vocabulary_uuid in Deploy - Content Staging 6

4 calls to deploy_uuid_get_vocabulary_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().
taxonomy_vocabulary_deploy in modules/taxonomy_deploy/taxonomy_deploy.module
Implementation of hook_deploy().

File

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

Code

function deploy_uuid_get_vocabulary_uuid($vid) {
  return db_result(db_query("SELECT uuid FROM {vocabulary_uuid} WHERE vid = %d", $vid));
}