mirror of
https://github.com/moodle/moodle.git
synced 2025-01-22 08:11:26 +01:00
12 lines
221 B
PHP
12 lines
221 B
PHP
<?PHP // $Id$
|
|
|
|
$RATING = array ("3" => "Outstanding",
|
|
"2" => "Satisfactory",
|
|
"1" => "Not satisfactory");
|
|
|
|
function journaldate($date) {
|
|
return date("l, j F Y, g:i A T", $date);
|
|
}
|
|
|
|
?>
|