mirror of
https://github.com/moodle/moodle.git
synced 2025-02-21 01:48:45 +01:00
214 lines
5.8 KiB
PHP
Executable File
214 lines
5.8 KiB
PHP
Executable File
<?php // $Id$
|
|
|
|
function migrate2utf8_hotpot_strings_string($recordid){
|
|
global $CFG, $globallang;
|
|
|
|
/// Some trivial checks
|
|
if (empty($recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
|
|
if (!$hotpotstrings = get_record('hotpot_strings','id',$recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
|
|
if ($globallang) {
|
|
$fromenc = $globallang;
|
|
} else {
|
|
$sitelang = $CFG->lang;
|
|
$courselang = null; //Non existing!
|
|
$userlang = null; //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($hotpotstrings->string, $fromenc);
|
|
|
|
$newhotpotstrings = new object;
|
|
$newhotpotstrings->id = $recordid;
|
|
$newhotpotstrings->string = $result;
|
|
migrate2utf8_update_record('hotpot_strings',$newhotpotstrings);
|
|
} else {
|
|
$result = false;
|
|
}
|
|
/// And finally, just return the converted field
|
|
return $result;
|
|
}
|
|
|
|
function migrate2utf8_hotpot_questions_name($recordid){
|
|
global $CFG, $globallang;
|
|
|
|
/// Some trivial checks
|
|
if (empty($recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
$SQL = "SELECT h.course
|
|
FROM {$CFG->prefix}hotpot h,
|
|
{$CFG->prefix}hotpot_questions hq
|
|
WHERE h.id = hq.hotpot
|
|
AND hq.id = $recordid";
|
|
|
|
if (!$hotpot = get_record_sql($SQL)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
|
|
if (!$hotpotquestion = get_record('hotpot_questions','id',$recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
if ($globallang) {
|
|
$fromenc = $globallang;
|
|
} else {
|
|
$sitelang = $CFG->lang;
|
|
$courselang = get_course_lang($hotpot->course); //Non existing!
|
|
$userlang = get_main_teacher_lang($hotpot->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($hotpotquestion->name, $fromenc);
|
|
|
|
$newhotpotquestion = new object;
|
|
$newhotpotquestion->id = $recordid;
|
|
$newhotpotquestion->name = $result;
|
|
migrate2utf8_update_record('hotpot_questions',$newhotpotquestion);
|
|
} else {
|
|
$result = false;
|
|
}
|
|
/// And finally, just return the converted field
|
|
return $result;
|
|
}
|
|
|
|
function migrate2utf8_hotpot_name($recordid){
|
|
global $CFG, $globallang;
|
|
|
|
/// Some trivial checks
|
|
if (empty($recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
|
|
if (!$hotpot = get_record('hotpot','id',$recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
if ($globallang) {
|
|
$fromenc = $globallang;
|
|
} else {
|
|
$sitelang = $CFG->lang;
|
|
$courselang = get_course_lang($hotpot->course); //Non existing!
|
|
$userlang = get_main_teacher_lang($hotpot->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($hotpot->name, $fromenc);
|
|
|
|
$newhotpot = new object;
|
|
$newhotpot->id = $recordid;
|
|
$newhotpot->name = $result;
|
|
migrate2utf8_update_record('hotpot',$newhotpot);
|
|
} else {
|
|
$result = false;
|
|
}
|
|
/// And finally, just return the converted field
|
|
return $result;
|
|
}
|
|
|
|
function migrate2utf8_hotpot_summary($recordid){
|
|
global $CFG, $globallang;
|
|
|
|
/// Some trivial checks
|
|
if (empty($recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
|
|
if (!$hotpot = get_record('hotpot','id',$recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
if ($globallang) {
|
|
$fromenc = $globallang;
|
|
} else {
|
|
$sitelang = $CFG->lang;
|
|
$courselang = get_course_lang($hotpot->course); //Non existing!
|
|
$userlang = get_main_teacher_lang($hotpot->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($hotpot->summary, $fromenc);
|
|
|
|
$newhotpot = new object;
|
|
$newhotpot->id = $recordid;
|
|
$newhotpot->summary = $result;
|
|
migrate2utf8_update_record('hotpot',$newhotpot);
|
|
} else {
|
|
$result = false;
|
|
}
|
|
/// And finally, just return the converted field
|
|
return $result;
|
|
}
|
|
|
|
function migrate2utf8_hotpot_password($recordid){
|
|
global $CFG, $globallang;
|
|
|
|
/// Some trivial checks
|
|
if (empty($recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
|
|
if (!$hotpot = get_record('hotpot','id',$recordid)) {
|
|
log_the_problem_somewhere();
|
|
return false;
|
|
}
|
|
if ($globallang) {
|
|
$fromenc = $globallang;
|
|
} else {
|
|
$sitelang = $CFG->lang;
|
|
$courselang = get_course_lang($hotpot->course); //Non existing!
|
|
$userlang = get_main_teacher_lang($hotpot->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($hotpot->password, $fromenc);
|
|
|
|
$newhotpot = new object;
|
|
$newhotpot->id = $recordid;
|
|
$newhotpot->password = $result;
|
|
migrate2utf8_update_record('hotpot',$newhotpot);
|
|
} else {
|
|
$result = false;
|
|
}
|
|
/// And finally, just return the converted field
|
|
return $result;
|
|
}
|
|
?>
|