You are here

function tft_restore_element in Taxonomy File Tree 7.2

Same name and namespace in other branches
  1. 7 tft.module \tft_restore_element()

Deprecated

Archives are OG specific

File

./tft.module, line 1555
Hook implementations and module logic for TFT.

Code

function tft_restore_element($og_nid, $id, $type) {
  if (tft_restore_archived_element($id, $type, $og_nid)) {
    drupal_set_message("L'élément a été restauré à son ancien emplacement.");
  }
  else {
    drupal_set_message("Impossible de restaurer l'élément à son ancien emplacement, car il n'existe plus. Il a été restauré à la racine de l'arborescence.", 'warning');
  }
  if (isset($_GET['destination'])) {
    drupal_goto($_GET['destination']);
  }
  else {
    drupal_goto();
  }
}