mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
Now use language strings instead of 1,2,3 to express ordering choices
This commit is contained in:
parent
9af43ab537
commit
9f55987836
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@
|
||||||
FRONTPAGECOURSELIST => get_string("frontpagecourselist"),
|
FRONTPAGECOURSELIST => get_string("frontpagecourselist"),
|
||||||
FRONTPAGECATEGORYNAMES => get_string("frontpagecategorynames"),
|
FRONTPAGECATEGORYNAMES => get_string("frontpagecategorynames"),
|
||||||
);
|
);
|
||||||
$values = array(get_string('hide'), 1, 2);
|
$values = array(get_string('hide'), get_string('order1', 'admin'), get_string('order2', 'admin'));
|
||||||
$seq = array_flip(explode(',',$form->frontpage));
|
$seq = array_flip(explode(',',$form->frontpage));
|
||||||
foreach ($seq as $k => $s) {
|
foreach ($seq as $k => $s) {
|
||||||
$seq[$k]++;
|
$seq[$k]++;
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
$form->frontpage = 2;
|
$form->frontpage = 2;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$values[] = 3;
|
$values[] = get_string('order3', 'admin');
|
||||||
}
|
}
|
||||||
foreach ($options as $key => $option) {
|
foreach ($options as $key => $option) {
|
||||||
echo "<td>$option<br />";
|
echo "<td>$option<br />";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue