Bump 3.0.4 version

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-04-14 13:32:14 +04:00
parent 4e64c0bcd2
commit 3f74278add
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 11 additions and 7 deletions

View File

@ -67,7 +67,7 @@ class service_edit_form extends moodleform {
*/
protected function definition() {
$mform =& $this->_form;
$size = [ 'size' => 60 ];
$size = ['size' => 60];
/* Form heading */
$mform->addElement('header', 'editserviceheader', new lang_string('service', 'webservice'));
@ -98,7 +98,11 @@ class service_edit_form extends moodleform {
$mform->setAdvanced('other');
/* Content type */
$contenttype = [ 'json' => 'application/json', 'x-www-form-urlencoded' => 'application/x-www-form-urlencoded' ];
$contenttype = [
'json' => 'application/json',
'x-www-form-urlencoded' => 'application/x-www-form-urlencoded',
];
$mform->addElement('select', 'type', 'Content type', $contenttype);
$mform->setAdvanced('type');
@ -112,8 +116,8 @@ class service_edit_form extends moodleform {
/* Formation of the list of elements */
foreach ($eventlist as $event) {
/* Escaping event names */
$eventname = base64_encode($event[ 'eventname' ]);
$events[ $event[ 'component' ] ][] =& $mform->createElement('checkbox', $eventname, $event[ 'eventname' ], $event[ 'eventname' ]);
$eventname = base64_encode($event['eventname']);
$events[$event['component']][] =& $mform->createElement('checkbox', $eventname, $event['eventname']);
}
/* Displays groups of items */

View File

@ -26,6 +26,6 @@ defined('MOODLE_INTERNAL') || die();
$plugin->component = 'local_webhooks';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '3.0.3 (Build: 2019021700)';
$plugin->requires = 2016112900;
$plugin->version = 2018061920;
$plugin->release = '3.0.4 (Build: 2020041400)';
$plugin->requires = 2019111800.00;
$plugin->version = 2020041400;