[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * script for bulk user delete operations 4 */ 5 6 require_once('../../config.php'); 7 require_once($CFG->libdir.'/adminlib.php'); 8 9 $confirm = optional_param('confirm', 0, PARAM_BOOL); 10 11 require_login(); 12 admin_externalpage_setup('userbulk'); 13 require_capability('moodle/user:update', context_system::instance()); 14 15 $return = $CFG->wwwroot.'/'.$CFG->admin.'/user/user_bulk.php'; 16 17 if (empty($SESSION->bulk_users)) { 18 redirect($return); 19 } 20 21 echo $OUTPUT->header(); 22 23 //TODO: add support for large number of users 24 25 if ($confirm and confirm_sesskey()) { 26 $notifications = ''; 27 list($in, $params) = $DB->get_in_or_equal($SESSION->bulk_users); 28 $rs = $DB->get_recordset_select('user', "id $in", $params, '', 'id, username, secret, confirmed, auth, firstname, lastname'); 29 foreach ($rs as $user) { 30 if ($user->confirmed) { 31 continue; 32 } 33 $auth = get_auth_plugin($user->auth); 34 $result = $auth->user_confirm($user->username, $user->secret); 35 if ($result != AUTH_CONFIRM_OK && $result != AUTH_CONFIRM_ALREADY) { 36 $notifications .= $OUTPUT->notification(get_string('usernotconfirmed', '', fullname($user, true))); 37 } 38 } 39 $rs->close(); 40 echo $OUTPUT->box_start('generalbox', 'notice'); 41 if (!empty($notifications)) { 42 echo $notifications; 43 } else { 44 echo $OUTPUT->notification(get_string('changessaved'), 'notifysuccess'); 45 } 46 $continue = new single_button(new moodle_url($return), get_string('continue'), 'post'); 47 echo $OUTPUT->render($continue); 48 echo $OUTPUT->box_end(); 49 } else { 50 list($in, $params) = $DB->get_in_or_equal($SESSION->bulk_users); 51 $userlist = $DB->get_records_select_menu('user', "id $in", $params, 'fullname', 'id,'.$DB->sql_fullname().' AS fullname'); 52 $usernames = implode(', ', $userlist); 53 echo $OUTPUT->heading(get_string('confirmation', 'admin')); 54 $formcontinue = new single_button(new moodle_url('user_bulk_confirm.php', array('confirm' => 1)), get_string('yes')); 55 $formcancel = new single_button(new moodle_url('user_bulk.php'), get_string('no'), 'get'); 56 echo $OUTPUT->confirm(get_string('confirmcheckfull', '', $usernames), $formcontinue, $formcancel); 57 } 58 59 echo $OUTPUT->footer();
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |