enableportfolios)) { print_error('disabled', 'portfolio'); } require_once($CFG->libdir.'/portfoliolib.php'); require_once($CFG->libdir.'/portfolio/exporter.php'); $PAGE->requires->yui2_lib('dom'); $id = required_param('id', PARAM_INT); $PAGE->set_url('/portfolio/download/file.php', array('id' => $id)); $exporter = portfolio_exporter::rewaken_object($id); portfolio_export_pagesetup($PAGE, $exporter->get('caller')); $exporter->verify_rewaken(); $exporter->print_header(get_string('downloading', 'portfolio_download'), false); $returnurl = $exporter->get('caller')->get_return_url(); echo $OUTPUT->notification('' . get_string('returntowhereyouwere', 'portfolio') . '
'); $PAGE->requires->js('/portfolio/download/helper.js'); $PAGE->requires->js_function_call('submit_download_form', null, true); // if they don't have javascript, they can submit the form here to get the file. // if they do, it does it nicely for them. echo '
'; echo $OUTPUT->footer();