-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimEdit.php
69 lines (59 loc) · 2.64 KB
/
simEdit.php
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
require('libs/Smarty.class.php');
$smarty = new Smarty;
include('admin/config.php');
$smarty->assign('simList',simulationList());
$simulation = new SimulationModel(); // instantiate collection model
$simulations = $simulation->findAll();
if (isset($_GET['simid'])) {
$sim = $simulation->findOne(array("_id" => (int)$_GET['simid']));
$postSim = $sim;
$simID = new MongoInt64($sim->getID());
}
//Grab updated country data - SORT LATER
if (isset($_POST['_id'])){ //check post data set
foreach(array_keys($_POST) as $key){
if($key != '_id'){
if(substr_count($key, 'param_')){
$params[str_replace('param_', '', $key)] = $_POST[$key];
} elseif($key == 'newKey') {
if(strlen($_POST['newKey']) > 0){
$params[$_POST['newKey']] = $_POST['newValue'];
}
} elseif ($key == 'newValue'){
// do nothing - already taken care of above
} else {
$function = 'set'. ucfirst($key);
if($key == 'finishTime'){
call_user_func(array($postSim, $function), (new MongoInt64($_POST[$key])));
$params[$key] = $_POST[$key];
}elseif ($key == 'createdAt' OR $key == 'parent' OR $key == 'currentTime'){ //specify all long int simulation fields here
call_user_func(array($postSim, $function), (new MongoInt64($_POST[$key])));
} else {
call_user_func(array($postSim, $function), $_POST[$key]);
}
}
} else {
$postSim->setID($simID);
}
}
$postSim->setParameters($params);
$postSim->save(); // save changes to database collection
$smarty->assign('updated', true);
}
// Load specific simulation
if (isset($_GET['simid'])) {
$sim = $simulation->findOne(array("_id" => (int)$_GET['simid']));
$postSim = $sim;
$simID = new MongoInt64($sim->getID());
}
$attributes = $sim->getAttributes();
$smarty->assign('simName', $sim->getName());
$smarty->assign('simState', $sim->getState());
$smarty->assign('simAuthor', $sim->getAuthor());
$smarty->assign('simDescription', $sim->getDescription());
$smarty->assign('simid', $simID);
$smarty->assign('attributes', $attributes);
$smarty->assign('simulations', $simulations);
$smarty->display('views/simEdit.tpl');
?>