function taxonomy_deploy_node_deploy_check in Deploy - Content Staging 6
Implementation of hook_node_deploy_check().
This is the dependency checking hook for nodes, called when a deployment has been requested that includes a node.
Parameters
$node: The node object being deployed
File
- modules/
taxonomy_deploy/ taxonomy_deploy.module, line 38 - Deployment API which enables modules to deploy items between servers.
Code
function taxonomy_deploy_node_deploy_check($node) {
taxonomy_deploy_check_taxonomy($node->taxonomy);
}