Exemple #1
0
 function admin_setting_special_registerauth()
 {
     parent::admin_setting_configselect('registerauth', get_string('selfregistration', 'auth'), get_string('selfregistration_help', 'auth'), 'email', null);
 }
Exemple #2
0
 function admin_setting_special_debug()
 {
     $name = 'debug';
     $visiblename = get_string('debug', 'admin');
     $description = get_string('configdebug', 'admin');
     $choices = array(DEBUG_NONE => get_string('debugnone', 'admin'), DEBUG_MINIMAL => get_string('debugminimal', 'admin'), DEBUG_NORMAL => get_string('debugnormal', 'admin'), DEBUG_ALL => get_string('debugall', 'admin'), DEBUG_DEVELOPER => get_string('debugdeveloper', 'admin'));
     parent::admin_setting_configselect($name, $visiblename, $description, '', $choices);
 }