aboutsummaryrefslogtreecommitdiff
path: root/settings.php
blob: a0f54236f782c94772a1d10c7846e4ef6e1f1ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
defined('MOODLE_INTERNAL') || die;

if ($ADMIN->fulltree) {
    //host
    $settings->add(new admin_setting_configtext('qtype_algebra_host', get_string('host', 'qtype_algebra'), '', 'localhost', PARAM_TEXT));
    //port
    $settings->add(new admin_setting_configtext('qtype_algebra_port', get_string('port', 'qtype_algebra'), '', 7777, PARAM_INT));
	 //host
    $settings->add(new admin_setting_configtext('qtype_algebra_uri', get_string('uri', 'qtype_algebra'), '', '', PARAM_TEXT));
}