-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmod_form.php
More file actions
218 lines (190 loc) · 9.78 KB
/
mod_form.php
File metadata and controls
218 lines (190 loc) · 9.78 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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?php
// This file is part of moodle webctimport module
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* URL configuration form
*
* @package mod
* @subpackage webctimport
* @copyright 2009 Petr Skoda {@link http://skodak.org}, 2011 The University of Nottingham
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die;
global $CFG;
require_once ($CFG->dirroot.'/course/moodleform_mod.php');
require_once($CFG->dirroot.'/mod/webctimport/locallib.php');
MoodleQuickForm::registerElementType('webctimport', "$CFG->dirroot/mod/webctimport/form/webctimport.php", 'MoodleQuickForm_webctimport');
class mod_webctimport_mod_form extends moodleform_mod {
var $form;
var $previewelement;
var $previewurl;
var $targettypelement;
var $webctimportelement;
function definition() {
global $CFG, $DB;
$mform = $this->_form;
$config = get_config('webctimport');
//-------------------------------------------------------
$mform->addElement('header', 'general', get_string('general', 'form'));
$mform->addElement('text', 'name', get_string('name'), array('size'=>'48'));
if (!empty($CFG->formatstringstriptags)) {
$mform->setType('name', PARAM_TEXT);
} else {
$mform->setType('name', PARAM_CLEANHTML);
}
$mform->addRule('name', null, 'required', null, 'client');
$this->add_intro_editor($config->requiremodintro);
//-------------------------------------------------------
$mform->addElement('header', 'content', get_string('contentheader', 'webctimport'));
$this->targettypelement = $mform->addElement('select', 'targettype', get_string('targettype', 'webctimport'),
array(WEBCTIMPORT_NONE => get_string('importtypenone','webctimport'),
WEBCTIMPORT_FILE => get_string('importtypefile','webctimport'),
WEBCTIMPORT_EQUELLA => get_string('importtypeequella','webctimport'))
);
$mform->setDefault('targettype', $config->importtype);
$this->webctimportelement = $mform->addElement('webctimport', 'webctfileid', get_string('importstatus', 'webctimport'));
//$mform->setType('display', PARAM_TEXT);
$mform->addElement('hidden', 'localfilepath');
$mform->addElement('hidden', 'owneruserid');
$this->previewelement = $mform->addElement('static', 'previewlink', get_string('clicktopreview', 'webctimport', "(Preview)"));
// $mform->addElement('html',
//'<div id="checkstatus">Requires Javascript</div><script type="text/javascript">YUI().use("node", function(Y) { alert("hi!"); Y.one("#checkstatus").replace(Y.Node.create("<div>Checking...</div>")); });</script>');
// TODO - hmm, how do we preview here - the object isn't known at this point
// $mform->addElement('html', '<div class="urlworkaround">');
// $previewurl = webctimport_get_preview_url($webctimport);
// $mform->addElement('html', get_string('clicktopreview', 'webctimport', "<a href=\"$previewurl\" target=\"_blank\">Preview</a>"));
// $mform->addElement('html', '</div>');
//$mform->addElement('url', 'externalurl', get_string('externalurl', 'url'), array('size'=>'60'), array('usefilepicker'=>true));
//-------------------------------------------------------
$mform->addElement('header', 'optionssection', get_string('optionsheader', 'webctimport'));
if ($this->current->instance) {
$options = resourcelib_get_displayoptions(explode(',', $config->displayoptions), $this->current->display);
} else {
$options = resourcelib_get_displayoptions(explode(',', $config->displayoptions));
}
if (count($options) == 1) {
$mform->addElement('hidden', 'display');
$mform->setType('display', PARAM_INT);
reset($options);
$mform->setDefault('display', key($options));
} else {
$mform->addElement('select', 'display', get_string('displayselect', 'webctimport'), $options);
$mform->setDefault('display', $config->display);
$mform->setAdvanced('display', $config->display_adv);
$mform->addHelpButton('display', 'displayselect', 'webctimport');
}
if (array_key_exists(RESOURCELIB_DISPLAY_POPUP, $options)) {
$mform->addElement('text', 'popupwidth', get_string('popupwidth', 'webctimport'), array('size'=>3));
if (count($options) > 1) {
$mform->disabledIf('popupwidth', 'display', 'noteq', RESOURCELIB_DISPLAY_POPUP);
}
$mform->setType('popupwidth', PARAM_INT);
$mform->setDefault('popupwidth', $config->popupwidth);
$mform->setAdvanced('popupwidth', $config->popupwidth_adv);
$mform->addElement('text', 'popupheight', get_string('popupheight', 'webctimport'), array('size'=>3));
if (count($options) > 1) {
$mform->disabledIf('popupheight', 'display', 'noteq', RESOURCELIB_DISPLAY_POPUP);
}
$mform->setType('popupheight', PARAM_INT);
$mform->setDefault('popupheight', $config->popupheight);
$mform->setAdvanced('popupheight', $config->popupheight_adv);
}
if (array_key_exists(RESOURCELIB_DISPLAY_AUTO, $options) or
array_key_exists(RESOURCELIB_DISPLAY_EMBED, $options) or
array_key_exists(RESOURCELIB_DISPLAY_FRAME, $options)) {
$mform->addElement('checkbox', 'printheading', get_string('printheading', 'webctimport'));
$mform->disabledIf('printheading', 'display', 'eq', RESOURCELIB_DISPLAY_POPUP);
$mform->disabledIf('printheading', 'display', 'eq', RESOURCELIB_DISPLAY_OPEN);
$mform->disabledIf('printheading', 'display', 'eq', RESOURCELIB_DISPLAY_NEW);
$mform->setDefault('printheading', $config->printheading);
$mform->setAdvanced('printheading', $config->printheading_adv);
$mform->addElement('checkbox', 'printintro', get_string('printintro', 'webctimport'));
$mform->disabledIf('printintro', 'display', 'eq', RESOURCELIB_DISPLAY_POPUP);
$mform->disabledIf('printintro', 'display', 'eq', RESOURCELIB_DISPLAY_OPEN);
$mform->disabledIf('printintro', 'display', 'eq', RESOURCELIB_DISPLAY_NEW);
$mform->setDefault('printintro', $config->printintro);
$mform->setAdvanced('printintro', $config->printintro_adv);
}
//-------------------------------------------------------
$this->standard_coursemodule_elements();
//-------------------------------------------------------
$this->add_action_buttons();
}
function data_preprocessing(&$default_values) {
if (!empty($default_values['displayoptions'])) {
$displayoptions = unserialize($default_values['displayoptions']);
if (isset($displayoptions['printintro'])) {
$default_values['printintro'] = $displayoptions['printintro'];
}
if (isset($displayoptions['printheading'])) {
$default_values['printheading'] = $displayoptions['printheading'];
}
if (!empty($displayoptions['popupwidth'])) {
$default_values['popupwidth'] = $displayoptions['popupwidth'];
}
if (!empty($displayoptions['popupheight'])) {
$default_values['popupheight'] = $displayoptions['popupheight'];
}
}
}
function set_data($data)
{
global $CFG;
$this->form = $data;
if (isset($data->localfilepath))
$this->previewurl = "$CFG->wwwroot/mod/webctimport/read_file.php?path=".urlencode($data->localfilepath);
if (isset($data->id))
$this->webctimportelement->setWebctimportId($data->id);
parent::set_data($data);
}
/**
* override if you need to setup the form depending on current
* values. This method is called after definition(), data submission and set_data().
* All form setup that is dependent on form values should go in here.
*/
function definition_after_data() {
if ($this->previewurl)
$this->previewelement->setLabel(get_string('clicktopreview', 'webctimport',
"<a href=\"$this->previewurl\" target=\"_blank\">Preview</a>"));
// cannot change import type if in progress...
if (isset($this->form->targettype) && $this->form->targettype!=WEBCTIMPORT_NONE) {
// not sure if this is the best way to do this! but it seems to be working...
$this->targettypelement->freeze();
//debugging('Note: tried to make targettype constant');
}
}
/** display special case - add doesn't really add a single item, it starts the tree browser! */
function display()
{
global $CFG,$USER;
$form = $this->form;
if (isset($form->add))
{
$url = $CFG->wwwroot.'/mod/webctimport/treeview.php'
. '?sesskey='.urlencode($USER->sesskey)
. '&course='.urlencode($form->course)
. '&coursemodule='.urlencode($form->coursemodule)
. '§ion='.urlencode($form->section)
. '&module='.urlencode($form->module)
. '&modulename='.urlencode($form->modulename)
. '&instance='.urlencode($form->instance);
echo webctimport_embed($url, 'WebCT import browser should open here!');
}
else
{
parent::display();
}
}
}