mirror of
https://github.com/moodle/moodle.git
synced 2025-02-24 20:13:14 +01:00
This check-in removes about 400 lines of code. I hope I have not screwed anything up. I would be grateful if people could review this change, and keep an eye on the navigation bar in modules. Any navigation bar bugs you find in the near future, feel free to file them in the tracker and assign them to me. Thanks. If not to many problems are found, I think I would like to backport this to 1.9 stable, but I am not sure that is a good idea. Opinions to the General Developer Forum please. I am about to start a thread there.
97 lines
2.8 KiB
PHP
97 lines
2.8 KiB
PHP
<?php // $Id$
|
|
|
|
require_once("../../config.php");
|
|
|
|
$id = required_param('id', PARAM_INT); // Course Module ID
|
|
|
|
if (! $cm = get_coursemodule_from_id('journal', $id)) {
|
|
error("Course Module ID was incorrect");
|
|
}
|
|
|
|
if (! $course = get_record("course", "id", $cm->course)) {
|
|
error("Course is misconfigured");
|
|
}
|
|
|
|
require_login($course->id, false, $cm);
|
|
|
|
if (isguest()) {
|
|
error("Guests are not allowed to edit journals", $_SERVER["HTTP_REFERER"]);
|
|
}
|
|
|
|
if (! $journal = get_record("journal", "id", $cm->instance)) {
|
|
error("Course module is incorrect");
|
|
}
|
|
|
|
$entry = get_record("journal_entries", "userid", $USER->id, "journal", $journal->id);
|
|
|
|
|
|
/// If data submitted, then process and store.
|
|
|
|
if ($form = data_submitted()) {
|
|
|
|
$timenow = time();
|
|
|
|
//$form->text = clean_text($form->text, $form->format);
|
|
|
|
if ($entry) {
|
|
$newentry->id = $entry->id;
|
|
$newentry->text = $form->text;
|
|
$newentry->format = $form->format;
|
|
$newentry->modified = $timenow;
|
|
if (! update_record("journal_entries", $newentry)) {
|
|
error("Could not update your journal");
|
|
}
|
|
add_to_log($course->id, "journal", "update entry", "view.php?id=$cm->id", "$newentry->id", $cm->id);
|
|
} else {
|
|
$newentry->userid = $USER->id;
|
|
$newentry->journal = $journal->id;
|
|
$newentry->text = $form->text;
|
|
$newentry->format = $form->format;
|
|
$newentry->modified = $timenow;
|
|
if (! $newentry->id = insert_record("journal_entries", $newentry)) {
|
|
error("Could not insert a new journal entry");
|
|
}
|
|
add_to_log($course->id, "journal", "add entry", "view.php?id=$cm->id", "$newentry->id", $cm->id);
|
|
}
|
|
|
|
redirect("view.php?id=$cm->id");
|
|
die;
|
|
}
|
|
|
|
/// Otherwise fill and print the form.
|
|
|
|
$strjournal = get_string("modulename", "journal");
|
|
$strjournals = get_string("modulenameplural", "journal");
|
|
$stredit = get_string("edit");
|
|
|
|
if ($usehtmleditor = can_use_richtext_editor()) {
|
|
$defaultformat = FORMAT_HTML;
|
|
} else {
|
|
$defaultformat = FORMAT_MOODLE;
|
|
}
|
|
|
|
if (empty($entry)) {
|
|
$entry->text = "";
|
|
$entry->format = $defaultformat;
|
|
}
|
|
|
|
$navigation = build_navigation($stredit, $cm);
|
|
print_header_simple(format_string($journal->name), "", $navigation, "",
|
|
"", true, "", navmenu($course, $cm));
|
|
|
|
echo "<center>\n";
|
|
|
|
print_simple_box( format_text($journal->intro, $journal->introformat) , "center");
|
|
|
|
echo "<br />";
|
|
|
|
include("edit.html");
|
|
|
|
if ($usehtmleditor) {
|
|
use_html_editor("text");
|
|
}
|
|
echo "</center>\n";
|
|
print_footer($course);
|
|
|
|
?>
|