/**
  * send file
  *
  * @access public
  */
 public function sendFileObject()
 {
     $file = new ilSessionFile((int) $_GET['file_id']);
     ilUtil::deliverFile($file->getAbsolutePath(), $file->getFileName(), $file->getFileType());
     return true;
 }