コード例 #1
0
 /**
  * confirmation screen remove from system
  */
 public function confirmRemoveFromSystemObject()
 {
     global $lng;
     include_once "./Services/Repository/classes/class.ilRepUtilGUI.php";
     if (!isset($_POST["trash_id"])) {
         ilUtil::sendFailure($lng->txt("no_checkbox"), true);
         $this->ctrl->redirect($this, "trash");
     }
     $ru = new ilRepUtilGUI($this);
     $ru->confirmRemoveFromSystemObject($_POST["trash_id"]);
 }