Clean up strings
[moodle.git] / question / edit.php
blobe70ec9436517e87fa6e7fbe97128b9377a4aaf96
1 <?php // $Id$
2 /**
3 * Page to edit the question bank
5 * TODO: add logging
7 * @version $Id$
8 * @author Martin Dougiamas and many others. This has recently been extensively
9 * rewritten by Gustav Delius and other members of the Serving Mathematics project
10 * {@link http://maths.york.ac.uk/serving_maths}
11 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
12 * @package question
14 require_once("../config.php");
15 require_once("editlib.php");
17 require_login();
19 $courseid = required_param('courseid', PARAM_INT);
21 // The optional parameter 'clean' allows us to clear module information,
22 // guaranteeing a module-independent question bank editing interface
23 if (optional_param('clean', false, PARAM_BOOL)) {
24 unset($SESSION->modform);
27 if (! $course = get_record("course", "id", $courseid)) {
28 error("This course doesn't exist");
30 $context = get_context_instance(CONTEXT_COURSE, $courseid);
31 require_login($course->id, false);
33 $SESSION->returnurl = $FULLME;
35 // Print basic page layout.
37 $streditingquestions = get_string('editquestions', "quiz");
39 // TODO: generalise this to any activity
40 $strquizzes = get_string('modulenameplural', 'quiz');
41 $streditingquestions = get_string('editquestions', "quiz");
42 if (isset($SESSION->modform->instance) and $quiz = get_record('quiz', 'id', $SESSION->modform->instance)) {
43 $strupdatemodule = has_capability('moodle/course:manageactivities', get_context_instance(CONTEXT_COURSE, $course->id))
44 ? update_module_button($SESSION->modform->cmid, $course->id, get_string('modulename', 'quiz'))
45 : "";
46 print_header_simple($streditingquestions, '',
47 "<a href=\"$CFG->wwwroot/mod/quiz/index.php?id=$course->id\">$strquizzes</a>".
48 " -> <a href=\"$CFG->wwwroot/mod/quiz/view.php?q={$SESSION->modform->instance}\">".format_string($SESSION->modform->name).'</a>'.
49 " -> $streditingquestions",
50 "", "", true, $strupdatemodule);
52 $currenttab = 'edit';
53 $mode = 'questions';
54 $quiz = &$SESSION->modform;
55 include($CFG->dirroot.'/mod/quiz/tabs.php');
56 } else {
57 print_header_simple($streditingquestions, '',
58 "$streditingquestions");
60 // print tabs
61 $currenttab = 'questions';
62 include('tabs.php');
65 echo '<table align="center" border="0" cellpadding="2" cellspacing="0">';
66 echo '<tr><td valign="top">';
68 include($CFG->dirroot.'/question/showbank.php');
70 echo '</td></tr>';
71 echo '</table>';
73 print_footer($course);