You are here

function globallink_taxonomy_check_status in GlobalLink Connect for Drupal 7.5

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

Checks taxonomy status based on row IDs.

Parameters

array $rids_arr: Array of row IDs.

Return value

array Array of row IDs that have been sent for translation or threw an error.

1 call to globallink_taxonomy_check_status()
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 1283

Code

function globallink_taxonomy_check_status($rids_arr) {
  $status = TRUE;
  $query = db_select('globallink_core_taxonomy', 'tc')
    ->fields('tc', array(
    'rid',
  ))
    ->condition('status', array(
    'Sent for Translations',
    'Error',
  ), 'IN');
  $results = $query
    ->execute();
  $rows = array();
  foreach ($results as $item) {
    $rows[$item->rid] = $item->rid;
  }
  foreach ($rids_arr as $val) {
    if (!in_array($val, $rows)) {
      unset($rids_arr[$val]);
      $status = FALSE;
    }
  }
  if (!$status) {
    drupal_set_message(t('Cannot cancel documents that have been cancelled in Globallink.'), 'warning', NULL);
  }
  return $rids_arr;
}