You are here

function globallink_taxonomy_cancel_records in GlobalLink Connect for Drupal 7.5

Same name and namespace in other branches
  1. 7.6 globallink_taxonomy/globallink_taxonomy.inc \globallink_taxonomy_cancel_records()

Cancels taxonomy records.

Parameters

array $rowids: Array of taxonomy IDs.

string $pd4: The project director details.

1 call to globallink_taxonomy_cancel_records()
globallink_taxonomy_active_form_submit in globallink_taxonomy/globallink_taxonomy_active_submissions.inc
Handles submission of active taxonomy form.

File

globallink_taxonomy/globallink_taxonomy.inc, line 431

Code

function globallink_taxonomy_cancel_records($rowids, $pd4) {
  $globallink_arr = array();
  foreach ($rowids as $rid) {
    $row = globallink_get_other_row($rid, 'taxonomy');
    $globallink = new GlobalLink();
    $globallink->tptRowId = $row->rid;
    $globallink->targetLocale = $row->target;
    $globallink->documentTicket = $row->document_ticket;
    $globallink->submissionTicket = $row->submission_ticket;
    $globallink_arr[$rid] = $globallink;
  }
  globallink_cancel_select_documents($pd4, $globallink_arr);
  globallink_taxonomy_update_row_document($globallink_arr);
}