/**
* Export quiz questions into the given category
*
+<<<<<<< export.php
* @version $Id$
+=======
+* @version $Id$
+>>>>>>> 1.22.2.2
* @author Martin Dougiamas, Howard Miller, and many others.
* {@link http://moodle.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
require_once("../config.php");
require_once( "editlib.php" );
+ // get parameters
$categoryid = optional_param('category',0, PARAM_INT);
+ $cattofile = optional_param('cattofile',0, PARAM_BOOL);
$courseid = required_param('courseid',PARAM_INT);
- $format = optional_param('format','', PARAM_FILE );
$exportfilename = optional_param('exportfilename','',PARAM_FILE );
+ $format = optional_param('format','', PARAM_FILE );
+
+
+ // get display strings
+ $txt = new object;
+ $txt->category = get_string('category','quiz');
+ $txt->download = get_string('download','quiz');
+ $txt->downloadextra = get_string('downloadextra','quiz');
+ $txt->exporterror = get_string('exporterror','quiz');
+ $txt->exportname = get_string('exportname','quiz');
+ $txt->exportquestions = get_string('exportquestions', 'quiz');
+ $txt->fileformat = get_string('fileformat','quiz');
+ $txt->exportcategory = get_string('exportcategory','quiz');
+ $txt->modulename = get_string('modulename','quiz');
+ $txt->modulenameplural = get_string('modulenameplural','quiz');
+ $txt->nocategory = get_string('nocategory','quiz');
+ $txt->tofile = get_string('tofile','quiz');
+
if (! $course = get_record("course", "id", $courseid)) {
error("Course does not exist!");
}
if (! $categorycourse = get_record("course", "id", $category->course)) {
- error( get_string('nocategory','quiz') );
+ error( $txt->nocategory );
}
require_login($course->id, false);
+ // check role capability
$context = get_context_instance(CONTEXT_COURSE, $course->id);
require_capability('moodle/question:export', $context);
// ensure the files area exists for this course
make_upload_directory( "$course->id" );
- $strexportquestions = get_string("exportquestions", "quiz");
- $strquestions = get_string("questions", "quiz");
-
- $strquizzes = get_string('modulenameplural', 'quiz');
- $streditingquiz = get_string(isset($SESSION->modform->instance) ? "editingquiz" : "editquestions", "quiz");
-
- $dirname = get_string("exportfilename","quiz");
-
- /// Header:
-
+ /// Header
if (isset($SESSION->modform->instance) and $quiz = get_record('quiz', 'id', $SESSION->modform->instance)) {
$strupdatemodule = has_capability('moodle/course:manageactivities', $context)
- ? update_module_button($SESSION->modform->cmid, $course->id, get_string('modulename', 'quiz'))
+ ? update_module_button($SESSION->modform->cmid, $course->id, $txt->modulename )
: "";
- print_header_simple($strexportquestions, '',
- "<a href=\"$CFG->wwwroot/mod/quiz/index.php?id=$course->id\">".get_string('modulenameplural', 'quiz').'</a>'.
- " -> <a href=\"$CFG->wwwroot/mod/quiz/view.php?q=$quiz->id\">".format_string($quiz->name).'</a>'.
- ' -> '.$strexportquestions,
- "", "", true, $strupdatemodule);
+ print_header_simple($txt->exportquestions, '',
+ "<a href=\"$CFG->wwwroot/mod/quiz/index.php?id=$course->id\">$txt->modulenameplural</a>".
+ " -> <a href=\"$CFG->wwwroot/mod/quiz/view.php?q=$quiz->id\">".format_string($quiz->name).'</a>'.
+ ' -> '.$txt->exportquestions,
+ "", "", true, $strupdatemodule);
$currenttab = 'edit';
$mode = 'export';
include($CFG->dirroot.'/mod/quiz/tabs.php');
} else {
- print_header_simple($strexportquestions, '', $strexportquestions);
+ print_header_simple($txt->exportquestions, '', $txt->exportquestions);
// print tabs
$currenttab = 'export';
include('tabs.php');
if (!empty($format)) { /// Filename
if (!confirm_sesskey()) {
- echo( 'Sesskey error' );
+ print_error( 'sesskey' );
}
if (! is_readable("format/$format/format.php")) {
- error('Format not known ('.clean_text($form->format).')');
- }
+ error( "Format not known ($format)" ); }
- require("format.php"); // Parent class
+ // load parent class for import/export
+ require("format.php");
+
+ // and then the class for the selected format
require("format/$format/format.php");
$classname = "qformat_$format";
$qformat->setCategory( $category );
$qformat->setCourse( $course );
$qformat->setFilename( $exportfilename );
+ $qformat->setCattofile( $cattofile );
if (! $qformat->exportpreprocess()) { // Do anything before that we need to
- error( get_string('exporterror','quiz'),
- "$CFG->wwwroot/question/export.php?courseid={$course->id}&category=$category->id");
+ error( $txt->exporterror, "$CFG->wwwroot/question/export.php?courseid={$course->id}&category=$category->id");
}
if (! $qformat->exportprocess()) { // Process the export data
- error( get_string('exporterror','quiz'),
- "$CFG->wwwroot/question/export.php?courseid={$course->id}&category=$category->id");
+ error( $txt->exporterror, "$CFG->wwwroot/question/export.php?courseid={$course->id}&category=$category->id");
}
if (! $qformat->exportpostprocess()) { // In case anything needs to be done after
- error( get_string('exporterror','quiz'),
- "$CFG->wwwroot/question/export.php?courseid={$course->id}&category=$category->id");
+ error( $txt->exporterror, "$CFG->wwwroot/question/export.php?courseid={$course->id}&category=$category->id");
}
echo "<hr />";
// link to download the finished file
$file_ext = $qformat->export_file_extension();
- $download_str = get_string( 'download', 'quiz' );
- $downloadextra_str = get_string( 'downloadextra','quiz' );
if ($CFG->slasharguments) {
$efile = "{$CFG->wwwroot}/file.php/".$qformat->question_get_export_dir()."/$exportfilename".$file_ext."?forcedownload=1";
}
else {
$efile = "{$CFG->wwwroot}/file.php?file=/".$qformat->question_get_export_dir()."/$exportfilename".$file_ext."&forcedownload=1";
}
+<<<<<<< export.php
echo "<p><div class=\"boxaligncenter\"><a href=\"$efile\">$download_str</a></div></p>";
echo "<p><div class=\"boxaligncenter\"><font size=\"-1\">$downloadextra_str</font></div></p>";
+=======
+ echo "</p><center><a href=\"$efile\">$txt->download</a></center></p>";
+ echo "</p><center><font size=\"-1\">$txt->downloadextra</font></center></p>";
+>>>>>>> 1.22.2.2
print_continue("edit.php?courseid=$course->id");
print_footer($course);
exit;
}
- /// Print upload form
+ /// Display upload form
// get valid formats to generate dropdown list
- $fileformatnames = get_import_export_formats( "export" );
+ $fileformatnames = get_import_export_formats( 'export' );
// get filename
if (empty($exportfilename)) {
$exportfilename = default_export_filename($course, $category);
}
+<<<<<<< export.php
print_heading_with_help($strexportquestions, "export", "quiz");
print_simple_box_start("center");
echo " <input type=\"hidden\" name=\"courseid\" value=\"$course->id\" />";
echo " <input type=\"submit\" name=\"save\" value=\"".get_string("exportquestions","quiz")."\" />";
echo "</td></tr>\n";
+=======
+ // DISPLAY MAIN PAGE
+ print_heading_with_help($txt->exportquestions, 'export', 'quiz');
+ print_simple_box_start('center');
+
+?>
+>>>>>>> 1.22.2.2
+<<<<<<< export.php
echo "</table>\n";
echo '</fieldset>';
echo "</form>\n";
+=======
+ <form enctype="multipart/form-data" method="post" action="export.php">
+ <input type="hidden" name="sesskey" value="<?php echo sesskey(); ?>" />
+ <input type="hidden" name="courseid" value="<?php echo $course->id; ?>" />
+
+ <table cellpadding="5">
+ <tr>
+ <td align="right"><?php echo $txt->category; ?>:</td>
+ <td>
+ <?php
+ if (!$showcatmenu) { // category already specified
+ echo '<strong>'.question_category_coursename($category).'</strong> '; ?>
+ <input type="hidden" name="category" value="<?php echo $category->id ?>" />
+ <?php
+ } else { // no category specified, let user choose
+ question_category_select_menu($course->id, true, false, $category->id);
+ }
+ echo $txt->tofile; ?>
+ <input name="cattofile" type="checkbox" />
+ <?php helpbutton('exportcategory', $txt->exportcategory, 'quiz'); ?>
+ </td>
+ </tr>
+ <tr>
+ <td align="right"><?php echo $txt->fileformat; ?>:</td>
+ <td>
+ <?php choose_from_menu($fileformatnames, 'format', 'gift', '');
+ helpbutton('export', $txt->exportquestions, 'quiz'); ?>
+ </td>
+ </tr>
+ <tr>
+ <td align="right"><?php echo $txt->exportname; ?>:</td>
+ <td>
+ <input type="text" size="40" name="exportfilename" value="<?php echo $exportfilename; ?>" />
+ </td>
+ </tr>
+ <tr>
+ <td align="center" colspan="2">
+ <input type="submit" name="save" value="<?php echo $txt->exportquestions; ?>" />
+ </td>
+ </tr>
+ </table>
+ </form>
+ <?php
+>>>>>>> 1.22.2.2
print_simple_box_end();
-
print_footer($course);
+?>
-?>
\ No newline at end of file
+<<<<<<< export.php
+?>=======
+>>>>>>> 1.22.2.2
-
<?php // $Id$
////////////////////////////////////////////////////////////////////
class qformat_default {
- // var $displayerrors = true;
+ var $displayerrors = true;
var $category = NULL;
var $course = NULL;
var $filename = '';
var $matchgrades = 'error';
var $catfromfile = 0;
+ var $cattofile = 0;
var $questionids = array();
// functions to indicate import/export functionality
function setCatfromfile( $catfromfile ) {
$this->catfromfile = $catfromfile;
}
+
+ /**
+ * set cattofile
+ * @param bool cattofile exports categories within export file
+ */
+ function setCattofile( $cattofile ) {
+ $this->cattofile = $cattofile;
+ }
/// Importing functions
// results are first written into string (and then to a file)
// so create/initialize the string here
$expout = "";
+
+ // track which category questions are in
+ // if it changes we will record the category change in the output
+ // file if selected. 0 means that it will get printed before the 1st question
+ $trackcategory = 0;
// iterate through questions
foreach($questions as $question) {
+
// do not export hidden questions
if (!empty($question->hidden)) {
continue;
if ($question->qtype==RANDOM) {
continue;
}
-
- // export the question displaying message
- $count++;
- echo "<hr /><p><b>$count</b>. ".stripslashes($question->questiontext)."</p>";
- $expout .= $this->writequestion( $question ) . "\n";
+
+ // check if we need to record category change
+ if ($this->cattofile) {
+ if ($question->category != $trackcategory) {
+ $trackcategory = $question->category;
+ $categoryname = get_category_path( $trackcategory );
+
+ // create 'dummy' question for category export
+ $dummyquestion = new object;
+ $dummyquestion->qtype = 'category';
+ $dummyquestion->category = $categoryname;
+ $dummyquestion->name = "switch category to $categoryname";
+ $dummyquestion->id = 0;
+ $dummyquestion->questiontextformat = '';
+ $expout .= $this->writequestion( $dummyquestion ) . "\n";
+ }
+ }
+
+ // export the question displaying message
+ $count++;
+ echo "<hr /><p><b>$count</b>. ".stripslashes($question->questiontext)."</p>";
+ $expout .= $this->writequestion( $question ) . "\n";
}
// final pre-process on exported data
$expout = $this->presave_process( $expout );
-
+
// write file
$filepath = $path."/".$this->filename . $this->export_file_extension();
if (!$fh=fopen($filepath,"w")) {
error( get_string('cannotopen','quiz',$filepath) );
}
- if (!fwrite($fh, $expout)) {
+ if (!fwrite($fh, $expout, strlen($expout) )) {
error( get_string('cannotwrite','quiz',$filepath) );
}
fclose($fh);
-
return true;
}