Skip to content

Commit

Permalink
Merge branch 'MDL-34337-master' of git://github.com/ankitagarwal/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
Aparup Banerjee committed Aug 13, 2012
2 parents e9b5490 + 4d26f27 commit 2cfd8f9
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions mod/scorm/report/basic/report.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/

defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/csvlib.class.php');

class scorm_basic_report extends scorm_default_report {
/**
Expand Down Expand Up @@ -260,13 +261,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);
}
$params = array();
list($usql, $params) = $DB->get_in_or_equal($allowedlist, SQL_PARAMS_NAMED);
Expand Down Expand Up @@ -474,9 +471,8 @@ function display($scorm, $cm, $course, $download) {
$colnum++;
}
$rownum++;
} else if ($download=='CSV') {
$text = implode("\t", $row);
echo $text." \n";
} else if ($download == 'CSV') {
$csvexport->add_data($row);
}
}
if (!$download) {
Expand Down Expand Up @@ -535,6 +531,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 2cfd8f9

Please sign in to comment.