Ejemplo n.º 1
0
 /**
  * Download news media item
  */
 function downloadItemObject()
 {
     global $ilCtrl;
     $this->checkPermission("read");
     $news_item = new ilNewsItem($_GET["item_id"]);
     if (!$news_item->deliverMobFile($_GET["purpose"], (int) $_GET["presentation"])) {
         $ilCtrl->redirect($this, "listItems");
     }
     exit;
 }