mirror of
https://github.com/moodle/moodle.git
synced 2025-02-20 16:15:54 +01:00
12 lines
437 B
PHP
12 lines
437 B
PHP
<?php
|
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
if ($ADMIN->fulltree) {
|
|
$settings->add(new admin_setting_configcheckbox('hotpot_showtimes', get_string('showtimes', 'hotpot'),
|
|
get_string('configshowtimes', 'hotpot'), 0) );
|
|
|
|
$settings->add(new admin_setting_configtext('hotpot_excelencodings', get_string('excelencodings', 'hotpot'),
|
|
get_string('configexcelencodings', 'hotpot'), '') );
|
|
}
|