forked from lushonline/moodle2-skillsoft-activity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod_form.php
199 lines (155 loc) · 7.68 KB
/
mod_form.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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<?php
/*
* @package mod-skillsoft
* @author $Author$
* @version SVN: $Header$
* @copyright 2009-2014 Martin Holden
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->dirroot.'/course/moodleform_mod.php');
require_once($CFG->dirroot.'/mod/skillsoft/locallib.php');
$PAGE->requires->js('/mod/skillsoft/skillsoft.js');
$PAGE->requires->js('/mod/skillsoft/md5.js');
class mod_skillsoft_mod_form extends moodleform_mod {
function definition() {
global $form, $CFG;
$mform = $this->_form;
//-------------------------------------------------------------------------------
// Adding the "general" fieldset, where all the common settings are showed
$mform->addElement('header', 'general', get_string('general', 'form'));
if (empty($this->_cm)) {
// Asset ID
$mform->addElement('text', 'assetid', get_string('skillsoft_assetid','skillsoft'));
$mform->addRule('assetid', null, 'required', null, 'client');
$mform->addRule('assetid', get_string('maximumchars', '', 255), 'maxlength', 255, 'client');
$mform->addHelpButton('assetid', 'skillsoft_assetid', 'skillsoft');
} else {
$mform->addElement('hidden', 'assetid', NULL, array('id'=>'id_assetid'));
}
$mform->setType('assetid', PARAM_TEXT);
//Button to get data from OLSA
//pass assetid to page
$courseid=$this->current->course;
$assetid="'+document.getElementById('id_assetid').value+'";
$url = '/mod/skillsoft/preloader.php?assetid='.$assetid.'&id='.$courseid;
$options = 'menubar=0,location=0,scrollbars,resizable,width=600,height=200';
if (empty($this->_cm)) {
$buttonattributes = array(
'title'=>get_string('skillsoft_retrievemetadata', 'skillsoft'),
'onclick'=>"return openpopup(false,{url:'$url',options:'$options'});",
);
$mform->addElement('button', 'getolsa', get_string('skillsoft_retrievemetadata', 'skillsoft'), $buttonattributes);
} else {
$buttonattributes = array(
'title'=>get_string('skillsoft_updatemetadata', 'skillsoft'),
'onclick'=>"return openpopup(false,{url:'$url',options:'$options'});",
);
$mform->addElement('button', 'getolsa', get_string('skillsoft_updatemetadata', 'skillsoft'), $buttonattributes);
}
$mform->addHelpButton('getolsa', 'skillsoft_retrievemetadata', 'skillsoft');
// Name
$mform->addElement('text', 'name', get_string('skillsoft_name','skillsoft'), array('size' => '75'));
if (!empty($CFG->formatstringstriptags)) {
$mform->setType('name', PARAM_TEXT);
} else {
$mform->setType('name', PARAM_CLEAN);
}
$mform->addRule('name', null, 'required', null, 'client');
$mform->addHelpButton('name', 'skillsoft_name', 'skillsoft');
$this->add_intro_editor(true, get_string('skillsoft_summary', 'skillsoft'));
// Summary
$mform->addHelpButton('introeditor', 'skillsoft_summary', 'skillsoft');
// Audience
$mform->addElement('htmleditor', 'audience', get_string('skillsoft_audience','skillsoft'), array('rows'=>'15', 'cols'=>'80'));
$mform->setType('audience', PARAM_RAW);
$mform->addHelpButton('audience', 'skillsoft_audience', 'skillsoft');
// Pre-Requisites
$mform->addElement('htmleditor', 'prereq', get_string('skillsoft_prereq','skillsoft'),array('rows'=>'15', 'cols'=>'80'));
$mform->setType('prereq', PARAM_RAW);
$mform->addHelpButton('prereq', 'skillsoft_prereq', 'skillsoft');
// Duration
$mform->addElement('text', 'duration', get_string('skillsoft_duration','skillsoft'));
$mform->setType('duration', PARAM_INT);
$mform->addHelpButton('duration', 'skillsoft_duration', 'skillsoft');
// Asset Type
$mform->addElement('hidden', 'assettype', null);
$mform->setType('assettype', PARAM_TEXT);
// Launch URL
if (isset($form->add)) {
$mform->addElement('text', 'launch', get_string('skillsoft_launch','skillsoft'), array('size' => '75'));
$mform->setType('launch', PARAM_TEXT);
$mform->addRule('launch', null, 'required', null, 'client');
$mform->addRule('launch', get_string('maximumchars', '', 255), 'maxlength', 255, 'client');
//$mform->setHelpButton('launch',array('launch', get_string('skillsoft_launch', 'skillsoft'), 'skillsoft'));
$mform->addHelpButton('launch', 'skillsoft_launch', 'skillsoft');
} else {
$mform->addElement('hidden', 'launch', NULL, array('id'=>'id_launch'));
$mform->setType('launch', PARAM_TEXT);
}
//Mastery
//Set a NULL as first
$mastery[''] = "No Mastery Score";
for ($i=1; $i<=100; $i++) {
$mastery[$i] = "$i";
}
$mform->addElement('select', 'mastery', get_string('skillsoft_mastery','skillsoft'), $mastery);
$mform->setType('mastery', PARAM_INT);
$mform->setDefault('mastery', '');
//$mform->setHelpButton('mastery',array('mastery', get_string('skillsoft_mastery', 'skillsoft'), 'skillsoft'));
$mform->addHelpButton('mastery', 'skillsoft_mastery', 'skillsoft');
//2014051301
$mform->addElement('text', 'aiccwindowsettings', get_string('skillsoft_aiccwindowsettingsform','skillsoft'), array('size' => '100'));
$mform->setType('aiccwindowsettings', PARAM_TEXT);
$mform->setDefault('aiccwindowsettings', $CFG->skillsoft_aiccwindowsettings);
$mform->addHelpButton('aiccwindowsettings', 'skillsoft_aiccwindowsettingsform', 'skillsoft');
//Time modified
$mform->addElement('hidden', 'timemodified');
$mform->setType('timemodified', PARAM_INT);
$mform->addElement('hidden', 'timecreated');
$mform->setType('timecreated', PARAM_INT);
$mform->addElement('hidden', 'completable');
$mform->setType('completable', PARAM_BOOL);
//-------------------------------------------------------------------------------
//-------------------------------------------------------------------------------
$features = new stdClass;
$features->groups = false;
$features->groupings = true;
$features->groupmembersonly = true;
$this->standard_coursemodule_elements($features);
//-------------------------------------------------------------------------------
// add standard buttons, common to all modules
$this->add_action_buttons();
}
function add_completion_rules() {
$mform =& $this->_form;
$mform->addElement('checkbox', 'completionskillsoftenabled', get_string('completionskillsoft', 'mod_skillsoft'), get_string('trackingskillsoft', 'mod_skillsoft'));
$mform->addElement('radio', 'completionsync', '', get_string('firstcomplete', 'mod_skillsoft'), 1, array());
// Hiding lastattempt for now, as I don't want to purge all the code we may end up needing
// $mform->addElement('radio', 'completionsync', '', get_string('lastattempt', 'mod_skillsoft'), 2, array());
$mform->setDefault('completionsync', 1);
$mform->disabledif('completionsync', 'completionskillsoftenabled');
return array('completionskillsoftenabled', 'completionsync');
}
function completion_rule_enabled($data) {
return (!empty($data['completionskillsoftenabled']));
}
function get_data() {
$data = parent::get_data();
if (!$data) {
return $data;
}
if (!empty($data->completionunlocked)) {
if (empty($data->completionsync)) {
$data->completionskillsoftenabled = 0;
} else {
$data->completionskillsoftenabled = 1;
}
}
return $data;
}
function data_preprocessing(&$default_values) {
$default_values['completionskillsoftenabled'] =
!empty($default_values['completionsync']) ? 1 : 0;
}
}