Skip to content

Commit

Permalink
Merge branch 'MDL-25708' of git://github.com/stronk7/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Jan 31, 2011
2 parents 43bbf28 + cc65dc3 commit 8afc38b
Show file tree
Hide file tree
Showing 53 changed files with 513 additions and 525 deletions.
53 changes: 26 additions & 27 deletions admin/multilangupgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,35 +56,34 @@
if (in_array($data->type, array('text','mediumtext','longtext','varchar'))) { // Text stuff only
// first find candidate records
$sql = "SELECT id, $column FROM $fulltable WHERE $column LIKE '%</lang>%' OR $column LIKE '%<span lang=%'";
if ($rs = $DB->get_recordset_sql($sql)) {
foreach ($rs as $data) {
$text = $data->$column;
$id = $data->id;
if ($i % 600 == 0) {
echo '<br />';
}
if ($i % 10 == 0) {
echo '.';
}
$i++;

if (empty($text) or is_numeric($text)) {
continue; // nothing to do
}

$search = '/(<(?:lang|span) lang="[a-zA-Z0-9_-]*".*?>.+?<\/(?:lang|span)>)(\s*<(?:lang|span) lang="[a-zA-Z0-9_-]*".*?>.+?<\/(?:lang|span)>)+/is';
$newtext = preg_replace_callback($search, 'multilangupgrade_impl', $text);

if (is_null($newtext)) {
continue; // regex error
}

if ($newtext != $text) {
$DB->execute("UPDATE $fulltable SET $column=? WHERE id=?", array($newtext, $id));
}
$rs = $DB->get_recordset_sql($sql);
foreach ($rs as $data) {
$text = $data->$column;
$id = $data->id;
if ($i % 600 == 0) {
echo '<br />';
}
if ($i % 10 == 0) {
echo '.';
}
$i++;

if (empty($text) or is_numeric($text)) {
continue; // nothing to do
}

$search = '/(<(?:lang|span) lang="[a-zA-Z0-9_-]*".*?>.+?<\/(?:lang|span)>)(\s*<(?:lang|span) lang="[a-zA-Z0-9_-]*".*?>.+?<\/(?:lang|span)>)+/is';
$newtext = preg_replace_callback($search, 'multilangupgrade_impl', $text);

if (is_null($newtext)) {
continue; // regex error
}

if ($newtext != $text) {
$DB->execute("UPDATE $fulltable SET $column=? WHERE id=?", array($newtext, $id));
}
$rs->close();
}
$rs->close();
}
}
}
Expand Down
11 changes: 5 additions & 6 deletions admin/user/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ function add_selection_all($ufiltering) {

list($sqlwhere, $params) = $ufiltering->get_sql_filter("id<>:exguest AND deleted <> 1", array('exguest'=>$CFG->siteguest));

if ($rs = $DB->get_recordset_select('user', $sqlwhere, $params, 'fullname', 'id,'.$DB->sql_fullname().' AS fullname')) {
foreach ($rs as $user) {
if (!isset($SESSION->bulk_users[$user->id])) {
$SESSION->bulk_users[$user->id] = $user->id;
}
$rs = $DB->get_recordset_select('user', $sqlwhere, $params, 'fullname', 'id,'.$DB->sql_fullname().' AS fullname');
foreach ($rs as $user) {
if (!isset($SESSION->bulk_users[$user->id])) {
$SESSION->bulk_users[$user->id] = $user->id;
}
$rs->close();
}
$rs->close();
}

function get_selection_data($ufiltering) {
Expand Down
21 changes: 10 additions & 11 deletions admin/user/user_bulk_confirm.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,18 @@

if ($confirm and confirm_sesskey()) {
list($in, $params) = $DB->get_in_or_equal($SESSION->bulk_users);
if ($rs = $DB->get_recordset_select('user', "id $in", $params, '', 'id, username, secret, confirmed, auth, firstname, lastname')) {
foreach ($rs as $user) {
if ($user->confirmed) {
continue;
}
$auth = get_auth_plugin($user->auth);
$result = $auth->user_confirm($user->username, $user->secret);
if ($result != AUTH_CONFIRM_OK && $result != AUTH_CONFIRM_ALREADY) {
echo $OUTPUT->notification(get_string('usernotconfirmed', '', fullname($user, true)));
}
$rs = $DB->get_recordset_select('user', "id $in", $params, '', 'id, username, secret, confirmed, auth, firstname, lastname');
foreach ($rs as $user) {
if ($user->confirmed) {
continue;
}
$auth = get_auth_plugin($user->auth);
$result = $auth->user_confirm($user->username, $user->secret);
if ($result != AUTH_CONFIRM_OK && $result != AUTH_CONFIRM_ALREADY) {
echo $OUTPUT->notification(get_string('usernotconfirmed', '', fullname($user, true)));
}
$rs->close();
}
$rs->close();
redirect($return, get_string('changessaved'));

} else {
Expand Down
15 changes: 7 additions & 8 deletions admin/user/user_bulk_delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,15 @@
if ($confirm and confirm_sesskey()) {

list($in, $params) = $DB->get_in_or_equal($SESSION->bulk_users);
if ($rs = $DB->get_recordset_select('user', "id $in", $params)) {
foreach ($rs as $user) {
if (!is_siteadmin($user) and $USER->id != $user->id and delete_user($user)) {
unset($SESSION->bulk_users[$user->id]);
} else {
echo $OUTPUT->notification(get_string('deletednot', '', fullname($user, true)));
}
$rs = $DB->get_recordset_select('user', "id $in", $params);
foreach ($rs as $user) {
if (!is_siteadmin($user) and $USER->id != $user->id and delete_user($user)) {
unset($SESSION->bulk_users[$user->id]);
} else {
echo $OUTPUT->notification(get_string('deletednot', '', fullname($user, true)));
}
$rs->close();
}
$rs->close();
session_gc(); // remove stale sessions
redirect($return, get_string('changessaved'));

Expand Down
17 changes: 8 additions & 9 deletions admin/user/user_bulk_forcepasswordchange.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,16 @@
$parts = array_chunk($SESSION->bulk_users, 300);
foreach ($parts as $users) {
list($in, $params) = $DB->get_in_or_equal($users);
if ($rs = $DB->get_recordset_select('user', "id $in", $params)) {
foreach ($rs as $user) {
if (!empty($changeable[$user->auth])) {
set_user_preference('auth_forcepasswordchange', 1, $user->id);
unset($SESSION->bulk_users[$user->id]);
} else {
echo $OUTPUT->notification(get_string('forcepasswordchangenot', '', fullname($user, true)));
}
$rs = $DB->get_recordset_select('user', "id $in", $params);
foreach ($rs as $user) {
if (!empty($changeable[$user->auth])) {
set_user_preference('auth_forcepasswordchange', 1, $user->id);
unset($SESSION->bulk_users[$user->id]);
} else {
echo $OUTPUT->notification(get_string('forcepasswordchangenot', '', fullname($user, true)));
}
$rs->close();
}
$rs->close();
}
echo $OUTPUT->notification(get_string('changessaved'), 'notifysuccess');
echo $OUTPUT->continue_button($return);
Expand Down
15 changes: 7 additions & 8 deletions admin/user/user_bulk_message.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,14 @@

if ($confirm and !empty($msg) and confirm_sesskey()) {
list($in, $params) = $DB->get_in_or_equal($SESSION->bulk_users);
if ($rs = $DB->get_recordset_select('user', "id $in", $params)) {
foreach ($rs as $user) {
//TODO we should probably support all text formats here or only FORMAT_MOODLE
//For now bulk messaging is still using the html editor and its supplying html
//so we have to use html format for it to be displayed correctly
message_post_message($USER, $user, $msg, FORMAT_HTML, 'direct');
}
$rs->close();
$rs = $DB->get_recordset_select('user', "id $in", $params);
foreach ($rs as $user) {
//TODO we should probably support all text formats here or only FORMAT_MOODLE
//For now bulk messaging is still using the html editor and its supplying html
//so we have to use html format for it to be displayed correctly
message_post_message($USER, $user, $msg, FORMAT_HTML, 'direct');
}
$rs->close();
redirect($return);
}

Expand Down
17 changes: 8 additions & 9 deletions course/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -1757,17 +1757,16 @@ function rebuild_course_cache($courseid=0, $clearonly=false) {
@set_time_limit(0); // this could take a while! MDL-10954
}

if ($rs = $DB->get_recordset("course", $select,'','id,fullname')) {
foreach ($rs as $course) {
$modinfo = serialize(get_array_of_activities($course->id));
$DB->set_field("course", "modinfo", $modinfo, array("id"=>$course->id));
// update cached global COURSE too ;-)
if ($course->id == $COURSE->id) {
$COURSE->modinfo = $modinfo;
}
$rs = $DB->get_recordset("course", $select,'','id,fullname');
foreach ($rs as $course) {
$modinfo = serialize(get_array_of_activities($course->id));
$DB->set_field("course", "modinfo", $modinfo, array("id"=>$course->id));
// update cached global COURSE too ;-)
if ($course->id == $COURSE->id) {
$COURSE->modinfo = $modinfo;
}
$rs->close();
}
$rs->close();
// reset the fast modinfo cache
$reset = 'reset';
get_fast_modinfo($reset);
Expand Down
7 changes: 4 additions & 3 deletions course/user.php
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@
}

// Check if result is empty
if (!$rs = $DB->get_recordset_sql($sql)) {
$rs = $DB->get_recordset_sql($sql);
if (!$rs->valid()) {

if ($course->id != 1) {
$error = get_string('nocompletions', 'coursereport_completion');
Expand All @@ -409,6 +410,7 @@
}

echo $OUTPUT->notification($error);
$rs->close(); // not going to loop (but break), close rs
break;
}

Expand Down Expand Up @@ -437,8 +439,7 @@
$courses['unstarted'][] = $c_info;
}
}

$rs->close();
$rs->close(); // after loop, close rs

// Loop through course status groups
foreach ($courses as $type => $infos) {
Expand Down
6 changes: 4 additions & 2 deletions enrol/authorize/localfuncs.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,9 @@ function send_welcome_messages($orderdata) {
WHERE e.id IN(" . implode(',', $orderdata) . ")
ORDER BY e.userid";

if (!$rs = $DB->get_recordset_sql($sql)) {
$rs = $DB->get_recordset_sql($sql);
if (!$rs->valid()) {
$rs->close(); // Not going to iterate (but exit), close rs
return;
}

Expand Down Expand Up @@ -247,7 +249,7 @@ function send_welcome_messages($orderdata) {
}
while ($ei);

$rs->close();
$rs->close(); // end of iteration, close rs
}
}

Expand Down
9 changes: 4 additions & 5 deletions grade/report/user/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -634,12 +634,11 @@ function calculate_averages() {
GROUP BY gg.itemid";

$sum_array = array();
if ($sums = $DB->get_recordset_sql($sql, $params)) {
foreach ($sums as $itemid => $csum) {
$sum_array[$itemid] = $csum->sum;
}
$sums->close();
$sums = $DB->get_recordset_sql($sql, $params);
foreach ($sums as $itemid => $csum) {
$sum_array[$itemid] = $csum->sum;
}
$sums->close();

$columncount=0;

Expand Down
35 changes: 17 additions & 18 deletions group/overview.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,26 +80,25 @@
WHERE g.courseid = :courseid $groupwhere $groupingwhere
ORDER BY g.name, u.lastname, u.firstname";

if ($rs = $DB->get_recordset_sql($sql, $params)) {
foreach ($rs as $row) {
$user = new stdClass();
$user->id = $row->userid;
$user->firstname = $row->firstname;
$user->lastname = $row->lastname;
$user->username = $row->username;
$user->idnumber = $row->idnumber;
if (!$row->groupingid) {
$row->groupingid = -1;
}
if (!array_key_exists($row->groupid, $members[$row->groupingid])) {
$members[$row->groupingid][$row->groupid] = array();
}
if(isset($user->id)){
$members[$row->groupingid][$row->groupid][] = $user;
}
$rs = $DB->get_recordset_sql($sql, $params);
foreach ($rs as $row) {
$user = new stdClass();
$user->id = $row->userid;
$user->firstname = $row->firstname;
$user->lastname = $row->lastname;
$user->username = $row->username;
$user->idnumber = $row->idnumber;
if (!$row->groupingid) {
$row->groupingid = -1;
}
if (!array_key_exists($row->groupid, $members[$row->groupingid])) {
$members[$row->groupingid][$row->groupid] = array();
}
if(isset($user->id)){
$members[$row->groupingid][$row->groupid][] = $user;
}
$rs->close();
}
$rs->close();

navigation_node::override_active_url(new moodle_url('/group/index.php', array('id'=>$courseid)));
$PAGE->navbar->add(get_string('overview', 'group'));
Expand Down
Loading

0 comments on commit 8afc38b

Please sign in to comment.