blob: e5051e509c979739a697d2ef3f7056522efc5ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
// Moodle algebra question type class
// Author: Roger Moore <rwmoore 'at' ualberta.ca>
// License: GNU Public License version 3
/**
* Script which converts the given formula text into LaTeX code and then
* displays the appropriate image file. It relies on the LaTeX filter to
* be present.
*/
require_once('../../../config.php');
require_once("$CFG->dirroot/question/type/algebra/parser.php");
global $PAGE;
$p = new qtype_algebra_parser;
try {
$query=urldecode($_SERVER['QUERY_STRING']);
$m=array();
if(!preg_match('/vars=([^&]*)&expr=(.*)$/A',$query,$m)) {
throw new Exception('Invalid query string received from http server!');
}
$vars=explode(',',$m[1]);
if(empty($m[2])) {
$texexp='';
} else {
$exp = $p->parse($m[2],$vars);
$texexp = '$$'.$exp->tex().'$$';
}
} catch(Exception $e) {
$texexp = get_string('parseerror','qtype_algebra',$e->getMessage());
}
$formatoptions = new stdClass;
$formatoptions->para = false;
$PAGE->set_context(get_context_instance(CONTEXT_SYSTEM));
$text = format_text($texexp, FORMAT_MOODLE, $formatoptions);
?>
<html>
<head>
<title>Formula</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body bgcolor="#FFFFFF">
<?php echo $text; ?>
</body>
</html>
|