mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
9 lines
314 B
PHP
9 lines
314 B
PHP
<?php //$Id$
|
|
|
|
$options = array(0=>get_string('no'), 1=>get_string('yes'));
|
|
$str = get_string('configallowfullanonymous', 'feedback');
|
|
$settings->add(new admin_setting_configselect('feedback_allowfullanonymous', get_string('allowfullanonymous', 'feedback'),
|
|
$str, 0, $options));
|
|
|
|
?>
|