getFirst("MediaModel",array("id"=>$_GET['id'])); $id = $_GET["id"]; if (!is_null($pdfModel)){ $localFilePath = GlobalVariables::get("config")->paths->media."/".$id.".".$pdfModel->extension; if (SFSManager::fileExists($localFilePath)){ header("Content-type: application/octet-stream"); header('Content-Disposition: attachment; filename="' . $id.".".$pdfModel->extension . '"'); echo file_get_contents($localFilePath); } } } ?>