-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathedit_event.php
More file actions
153 lines (144 loc) · 7.85 KB
/
Copy pathedit_event.php
File metadata and controls
153 lines (144 loc) · 7.85 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
//namespace gameme\PHPGamification;
//use Exception;
//use gameme\PHPGamification;
//use gameme\PHPGamification\Model;
//use gameme\PHPGamification\Model\Event;
define('AT_INCLUDE_PATH', '../../include/');
require (AT_INCLUDE_PATH.'vitals.inc.php');
if($_SESSION['course_id'] >0){
authenticate(AT_PRIV_GAMEME);
$course_id = $_SESSION['course_id'];
} else {
admin_authenticate(AT_ADMIN_PRIV_GAMEME);
$course_id = 0;
}
$_custom_css = $_base_path . 'mods/gameme/module.css'; // use a custom stylesheet
//$_custom_head ='<script type="text/javascript" src="'.$_base_path .'jscripts/lib/jquery.1.10.1.min.js"></script>'."\n";
$_custom_head.='<script type="text/javascript" src="'.$_base_path .'mods/gameme/gamify.js"></script>'."\n";
$_custom_head.='
<script type="text/javascript">
//<!--
jQuery.noConflict();
//-->
</script>';
if($_POST['cancel'] && $course_id >0){
$msg->addFeedback('cancelled');
header('Location:'.$_base_href.'mods/gameme/index_instructor.php');
exit;
}else if ($_POST['cancel'] && $course_id ==0){
$msg->addFeedback('cancelled');
header('Location:'.$_base_href.'mods/gameme/index_admin.php');
exit;
}
if($_POST['submit']){
global $_base_path;
// this line is a hack
$this_path = preg_replace ('#/get.php#','',$_SERVER['DOCUMENT_ROOT'].$_base_path);
require_once($this_path.'mods/gameme/gamify.lib.php');
require_once($this_path.'mods/gameme/PHPGamification/PHPGamification.class.php');
$gamification = new PHPGamification();
$gamification->setDAO(new DAO(DB_HOST, DB_NAME, DB_USER, DB_PASSWORD));
$event = new Event();
if($_POST['id']){
$event->setId($_POST['id'], $course_id);
}
$event->setAlias($_POST['alias'], $course_id);
if(!empty($_POST['description'])){
$event->setDescription($_POST['description'], $course_id);
}
if(!empty($_POST['allow_repetitions'])){
$event->setAllowRepetitions($_POST['allow_repetitions'], $course_id);
}
if(!empty($_POST['reach_required_repetitions'])){
$event->setReachRequiredRepetitions($_POST['reach_required_repetitions'], $course_id);
}
if(!empty($_POST['max_points'])){
$event->setMaxPointsGranted($_POST['max_points'], $course_id);
}
if(!empty($_POST['each_points'])){
$event->setEachPointsGranted($_POST['each_points'], $course_id);
}
if(!empty($_POST['reach_points'])){
$event->setReachPointsGranted($_POST['reach_points'], $course_id);
}
if(!empty($_POST['id_each_badge'])){
//$sql = "SELECT alias FROM %sgm_badges WHERE id = %d";
//$this_alias = queryDB($sql, array(TABLE_PREFIX, $_POST['id_each_badge']), TRUE);
$event->copyEachBadgeGranted($_POST['id_each_badge'], $course_id);
//$event->setEachBadgeGranted($gamification->getBadgeByAlias($this_alias['alias'], $course_id));
}
if(!empty($_POST['id_reach_badge'])){
//$sql = "SELECT alias FROM %sgm_badges WHERE id = %d";
//$this_alias = queryDB($sql, array(TABLE_PREFIX, $_POST['id_reach_badge']), TRUE);
$event->copyReachBadgeGranted($_POST['id_reach_badge'], $course_id);
//$event->setReachBadgeGranted($gamification->getBadgeByAlias($this_alias['alias'], $course_id));
}
if(!empty($_POST['each_callback'])){
$event->setEachCallback($_POST['each_callback'], $course_id);
}
if(!empty($_POST['reach_callback'])){
$event->setReachCallback($_POST['reach_callback'], $course_id);
}
if(!empty($_POST['reach_message'])){
$event->setReachMessage($_POST['reach_message'], $course_id);
}
$gamification->addEvent($event, $course_id);
$msg->addFeedback('success');
if($course_id >0){
header('Location:'.$_base_href.'mods/gameme/index_instructor.php');
}else{
header('Location:'.$_base_href.'mods/gameme/index_admin.php');
}
exit;
}
require (AT_INCLUDE_PATH.'header.inc.php');
$sql = "SELECT * FROM %sgm_events WHERE id = %d AND course_id =%d";
$this_event = queryDB($sql, array(TABLE_PREFIX, $_GET['id'], $course_id), TRUE);
$msg->printInfos('GM_CREATE_EVENT_TEXT');
?>
<form name="form" action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post">
<input type="hidden" id="id" name="id" value="<?php echo $this_event['id']; ?>" />
<input type="hidden" id="course_id" name="course_id" value="<?php echo $this_event['course_id']; ?>" />
<div class="input-form">
<fieldset class="group_form">
<legend class="group_form"><?php echo _AT('gm_edit_event'); ?></legend>
<label for="alias"><?php echo _AT('gm_alias'); ?></label><br />
<?php
if(!isset($_GET['id'])){?>
<input type="text" id="alias" name="alias" value="<?php echo $this_event['alias']; ?>" />
<?php } else { ?>
<strong><?php echo $this_event['alias']; ?></strong>
<input type="hidden" id="alias" name="alias" value="<?php echo $this_event['alias']; ?>" />
<?php } ?>
<br /><br />
<label for="description"><?php echo _AT('gm_description'); ?></label><br />
<input type="text" id="description" name="description" value="<?php echo $this_event['description']; ?>" size="48"/><br />
<label for="allow_repetitions"><?php echo _AT('gm_allow_repetition'); ?></label><br />
<select name="allow_repetitions" id="allow_repetitions">
<option value="0" <?php if($this_event['allow_repetition'] ==0){ echo ' selected="selected"';} ?>><?php echo _AT('gm_yes'); ?></option>
<option value="1" <?php if($this_event['allow_repetition'] ==1){ echo ' selected="selected"';} ?>><?php echo _AT('gm_no'); ?></option>
</select><br />
<label for="reach_required_repetitions"><?php echo _AT('gm_reach_repetition'); ?></label> <br />
<input type="text" id="reach_required_repetitions" name="reach_required_repetitions" value="<?php echo $this_event['reach_required_repetitions']; ?>" maxlength="3" size="3" /><br />
<label for="max_points"><?php echo _AT('gm_max_points_allowed'); ?></label><br />
<input type="text" id="max_points" name="max_points" value="<?php echo $this_event['max_points']; ?>" maxlength="5" size="5"/><br />
<label for="id_each_badge"><?php echo _AT('gm_each_badge_id'); ?></label><br />
<input type="text" id="id_each_badge" name="id_each_badge" value="<?php echo $this_event['id_each_badge']; ?>" maxlength="3" size="3"/><br />
<label for="id_reach_badge"><?php echo _AT('gm_reach_badge_id'); ?></label> <br />
<input type="text" id="id_reach_badge" name="id_reach_badge" value="<?php echo $this_event['id_reach_badge']; ?>"maxlength="3" size="3" /><br />
<label for="each_points"><?php echo _AT('gm_eachevent_points'); ?></label> <br />
<input type="text" id="each_points" name="each_points" value="<?php echo $this_event['each_points']; ?>" maxlength="4" size="4"/><br />
<label for="reach_points"><?php echo _AT('gm_reachevent_points'); ?></label> <br />
<input type="text" id="reach_points" name="reach_points" value="<?php echo $this_event['reach_points']; ?>"maxlength="5" size="5" /><br />
<label for="each_callback"><?php echo _AT('gm_eachevent_callback'); ?></label><br />
<input type="text" id="each_callback" name="each_callback" value="<?php echo $this_event['each_callback']; ?>" size="35"/><br />
<label for="reach_callback"><?php echo _AT('gm_reachevent_callback'); ?></label> <br />
<input type="text" id="reach_callback" name="reach_callback" value="<?php echo $this_event['reach_callback']; ?>" size="35" /><br />
<label for="reach_message"><?php echo _AT('gm_reachevent_message'); ?></label> <br />
<textarea type="text" id="reach_message" name="reach_message" rows="4" cols=50><?php echo $this_event['reach_message']; ?></textarea><br />
<input type="submit" name="submit" value="<?php echo _AT('gm_save_event'); ?>"/><input type="submit" name="cancel" value="<?php echo _AT('gm_cancel'); ?>"/>
</fieldset>
</div>
</form>
<?php require (AT_INCLUDE_PATH.'footer.inc.php'); ?>