You are here

function tft_restore_element in Taxonomy File Tree 7

Same name and namespace in other branches
  1. 7.2 tft.module \tft_restore_element()
1 string reference to 'tft_restore_element'
tft_menu in ./tft.module
Implementation of hook_menu().

File

./tft.module, line 1517
Module hooks.

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();
  }
}