aboutsummaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
Diffstat (limited to 'classes')
-rw-r--r--classes/editform.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/classes/editform.php b/classes/editform.php
index 89786bf..ef61f52 100644
--- a/classes/editform.php
+++ b/classes/editform.php
@@ -89,6 +89,11 @@ class service_edit_form extends moodleform {
$mform->addElement("text", "token", new lang_string("token", "webservice"), $size);
$mform->setType("token", PARAM_NOTAGS);
+ /* Additional information */
+ $mform->addElement("text", "other", new lang_string("courserequestsupport", "moodle"), $size);
+ $mform->setType("other", PARAM_NOTAGS);
+ $mform->setAdvanced("other");
+
/* Content type */
$contenttype = array("json" => "application/json", "x-www-form-urlencoded" => "application/x-www-form-urlencoded");
$mform->addElement("select", "type", "Content type", $contenttype);