Skip to content

Commit

Permalink
MDL-34336 scorm: Updating export of interaction reports as csv, to us…
Browse files Browse the repository at this point in the history
…e new csv exporter class
  • Loading branch information
ankitagarwal committed Aug 10, 2012
1 parent 87e9331 commit 0253b26
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions mod/scorm/report/interactions/report.php
Expand Up @@ -327,13 +327,9 @@ function display($scorm, $cm, $course, $download) {
}
$rownum = 1;
} else if ($download == 'CSV') {
$filename .= ".txt";
header("Content-Type: application/download\n");
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Expires: 0");
header("Cache-Control: must-revalidate,post-check=0,pre-check=0");
header("Pragma: public");
echo implode("\t", $headers)." \n";
$csvexport = new csv_export_writer("tab");
$csvexport->set_filename($filename, ".txt");
$csvexport->add_data($headers);
}

if (!$download) {
Expand Down Expand Up @@ -546,8 +542,7 @@ function display($scorm, $cm, $course, $download) {
}
$rownum++;
} else if ($download == 'CSV') {
$text = implode("\t", $row);
echo $text." \n";
$csvexport->add_data($row);
}
}
if (!$download) {
Expand Down Expand Up @@ -606,6 +601,7 @@ function display($scorm, $cm, $course, $download) {
$workbook->close();
exit;
} else if ($download == 'CSV') {
$csvexport->download_file();
exit;
}
} else {
Expand Down

0 comments on commit 0253b26

Please sign in to comment.