You are here

function content_copy_node_type in Deploy - Content Staging 6

Implementation of hook_node_type().

File

modules/content_copy_deploy/content_copy_deploy.module, line 37

Code

function content_copy_node_type($op, $info) {

  // Remove the deleted content type from all plans.
  if ($op == 'delete') {
    deploy_plan_item_delete(array(
      'module' => 'content_copy',
      'data' => $info->type,
    ));
  }
}