moodle/mod/chat/db/migrate2utf8.php
2006-02-24 08:20:13 +00:00

79 lines
2.0 KiB
PHP
Executable File

<?
function migrate2utf8_chat_name($recordid){
global $CFG, $globallang;
/// Some trivial checks
if (empty($recordid)) {
log_the_problem_somewhere();
return false;
}
if (!$chat = get_record('chat', 'id', $recordid)) {
log_the_problem_somewhere();
return false;
}
if ($globallang) {
$fromenc = $globallang;
} else {
$sitelang = $CFG->lang;
$courselang = get_course_lang($chat->course); //Non existing!
$userlang = get_main_teacher_lang($chat->course); //N.E.!!
$fromenc = get_original_encoding($sitelang, $courselang, $userlang);
}
/// We are going to use textlib facilities
/// Convert the text
if (($fromenc != 'utf-8') && ($fromenc != 'UTF-8')) {
$result = utfconvert($chat->name, $fromenc);
$newchat = new object;
$newchat->id = $recordid;
$newchat->name = $result;
update_record('chat',$newchat);
}
/// And finally, just return the converted field
return $result;
}
function migrate2utf8_chat_intro($recordid){
global $CFG, $globallang;
/// Some trivial checks
if (empty($recordid)) {
log_the_problem_somewhere();
return false;
}
if (!$chat = get_record('chat', 'id', $recordid)) {
log_the_problem_somewhere();
return false;
}
if ($globallang) {
$fromenc = $globallang;
} else {
$sitelang = $CFG->lang;
$courselang = get_course_lang($chat->course); //Non existing!
$userlang = get_main_teacher_lang($chat->course); //N.E.!!
$fromenc = get_original_encoding($sitelang, $courselang, $userlang);
}
/// We are going to use textlib facilities
/// Convert the text
if (($fromenc != 'utf-8') && ($fromenc != 'UTF-8')) {
$result = utfconvert($chat->intro, $fromenc);
$newchat = new object;
$newchat->id = $recordid;
$newchat->intro = $result;
update_record('chat',$newchat);
}
/// And finally, just return the converted field
return $result;
}
?>