Add missing update 146 php file

This commit is contained in:
james 2009-10-11 19:49:21 +00:00
parent bdf2ea7577
commit 5486317f53

70
db/db.update.146.php Normal file
View File

@ -0,0 +1,70 @@
<?
require_once('../user.inc.php');
function db_update_146_pre()
{
}
function db_update_146_handle($name, $email, $phone, $type)
{
$un = $email;
list($first, $last) = split(' ', $name, 2);
/* Find the user */
if($email != '') {
$u = user_load_by_email($email);
} else {
$u = false;
/* Random username */
$un = "$first$last".user_generate_password();
}
if($u != false) {
/* Found the user */
$u['types'][] = $type;
} else {
/* Create the user */
$u = user_create($type, user_generate_password());
$u['firstname'] = $first;
$u['lastname'] = $last;
$u['email'] = $email;
$u['username'] = $un;
$u['phone'] = $phone;
}
/* Save the user */
$uid = $u['uid'];
user_save($u);
return $u;
}
function db_update_146_post()
{
global $config;
$q = mysql_query("SELECT * FROM schools WHERE year='{$config['FAIRYEAR']}'");
while($s = mysql_fetch_assoc($q)) {
/* Science head */
if(trim($s['sciencehead']) != '') {
$u = db_update_146_handle($s['sciencehead'],
$s['scienceheademail'],
$s['scienceheadphone'],
'teacher');
if($u != false) {
mysql_query("UPDATE schools SET sciencehead_uid='{$u['uid']}' WHERE id='{$s['id']}'");
}
}
/* Now the principal */
if(trim($s['principal']) != '') {
$u = db_update_146_handle($s['principal'],
$s['schoolemail'],
$s['phone'],
'principal');
if($u != false) {
mysql_query("UPDATE schools SET principal_uid='{$u['uid']}' WHERE id='{$s['id']}'");
}
}
}
}
?>