/**
  * mark one or more question objects for moving
  */
 function moveObject()
 {
     if (count($_POST["q_id"]) > 0) {
         foreach ($_POST["q_id"] as $key => $value) {
             $this->object->moveToClipboard($value);
         }
         ilUtil::sendInfo($this->lng->txt("qpl_move_insert_clipboard"), true);
     } else {
         ilUtil::sendInfo($this->lng->txt("qpl_move_select_none"), true);
     }
     $this->ctrl->redirect($this, "questions");
 }