moodle/mod/feedback/settings.php
2010-03-08 22:02:36 +00:00

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));
?>