function user_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/
user_deploy/ user_deploy.module, line 21 - Deployment API which enables modules to deploy items between servers.
Code
function user_deploy_node_deploy_check($node) {
user_deploy_check_user($node->uid);
}