moodle/mod/glossary/edit.php
tjhunt 38e179a4ed MDL-11741 - Convert core modules to take advantage of recent improvements to build_navigation.
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.
2007-10-12 15:55:49 +00:00

220 lines
7.5 KiB
PHP

<?php // $Id$
require_once('../../config.php');
require_once('lib.php');
require_once('edit_form.php');
global $CFG, $USER;
$id = required_param('id', PARAM_INT); // Course Module ID
$e = optional_param('e', 0, PARAM_INT); // EntryID
$confirm = optional_param('confirm',0, PARAM_INT); // proceed. Edit the edtry
$mode = optional_param('mode', '', PARAM_ALPHA); // categories if by category?
$hook = optional_param('hook', '', PARAM_ALPHANUM); // CategoryID
if (! $cm = get_coursemodule_from_id('glossary', $id)) {
error("Course Module ID was incorrect");
}
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
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 glossaries", $_SERVER["HTTP_REFERER"]);
}
if (! $glossary = get_record("glossary", "id", $cm->instance)) {
error("Course module is incorrect");
}
if ($e) { // if entry is specified
if (!$entry = get_record("glossary_entries", "id", $e)) {
error("Incorrect entry id");
}
$ineditperiod = ((time() - $entry->timecreated < $CFG->maxeditingtime) || $glossary->editalways);
if (!has_capability('mod/glossary:manageentries', $context) and !($entry->userid == $USER->id and ($ineditperiod and has_capability('mod/glossary:write', $context)))) {
//expired edit time is the most probable cause here
error(get_string('erredittimeexpired', 'glossary'), "view.php?id=$cm->id&amp;mode=entry&amp;hook=$e");
}
} else { // new entry
require_capability('mod/glossary:write', $context);
}
$mform =& new mod_glossary_entry_form(null, compact('cm', 'glossary', 'hook', 'mode', 'e', 'context'));
if ($mform->is_cancelled()){
if ($e){
redirect("view.php?id=$cm->id&amp;mode=entry&amp;hook=$e");
} else {
redirect("view.php?id=$cm->id");
}
} elseif ($fromform = $mform->get_data()) {
trusttext_after_edit($fromform->definition, $context);
if ( !isset($fromform->usedynalink) ) {
$fromform->usedynalink = 0;
}
if ( !isset($fromform->casesensitive) ) {
$fromform->casesensitive = 0;
}
if ( !isset($fromform->fullmatch) ) {
$fromform->fullmatch = 0;
}
$timenow = time();
$todb = new object();
$todb->course = $glossary->course;
$todb->glossaryid = $glossary->id;
$todb->concept = trim($fromform->concept);
$todb->definition = $fromform->definition;
$todb->format = $fromform->format;
$todb->usedynalink = $fromform->usedynalink;
$todb->casesensitive = $fromform->casesensitive;
$todb->fullmatch = $fromform->fullmatch;
$todb->timemodified = $timenow;
$todb->approved = 0;
$todb->aliases = "";
if ( $glossary->defaultapproval or has_capability('mod/glossary:approve', $context) ) {
$todb->approved = 1;
}
if ($e) {
$todb->id = $e;
$dir = glossary_file_area_name($todb);
if ($mform->save_files($dir) and $newfilename = $mform->get_new_filename()) {
$todb->attachment = $newfilename;
}
if (update_record('glossary_entries', $todb)) {
add_to_log($course->id, "glossary", "update entry",
"view.php?id=$cm->id&amp;mode=entry&amp;hook=$todb->id",
$todb->id, $cm->id);
} else {
error("Could not update your glossary");
}
} else {
$todb->userid = $USER->id;
$todb->timecreated = $timenow;
$todb->sourceglossaryid = 0;
$todb->teacherentry = has_capability('mod/glossary:manageentries', $context);
if ($todb->id = insert_record("glossary_entries", $todb)) {
$e = $todb->id;
$dir = glossary_file_area_name($todb);
if ($mform->save_files($dir) and $newfilename = $mform->get_new_filename()) {
set_field("glossary_entries", "attachment", $newfilename, "id", $todb->id);
}
add_to_log($course->id, "glossary", "add entry",
"view.php?id=$cm->id&amp;mode=entry&amp;hook=$todb->id", $todb->id,$cm->id);
} else {
error("Could not insert this new entry");
}
}
delete_records("glossary_entries_categories", "entryid", $e);
delete_records("glossary_alias", "entryid", $e);
if (empty($fromform->notcategorised) && isset($fromform->categories)) {
$newcategory->entryid = $e;
foreach ($fromform->categories as $category) {
if ( $category > 0 ) {
$newcategory->categoryid = $category;
insert_record("glossary_entries_categories", $newcategory, false);
} else {
break;
}
}
}
if ( isset($fromform->aliases) ) {
if ( $aliases = explode("\n", $fromform->aliases) ) {
foreach ($aliases as $alias) {
$alias = trim($alias);
if ($alias) {
unset($newalias);
$newalias->entryid = $e;
$newalias->alias = $alias;
insert_record("glossary_alias", $newalias, false);
}
}
}
}
redirect("view.php?id=$cm->id&amp;mode=entry&amp;hook=$todb->id");
} else {
if ($e) {
$fromdb = get_record("glossary_entries", "id", $e);
$toform = new object();
if ($categoriesarr = get_records_menu("glossary_entries_categories", "entryid", $e, '', 'id, categoryid')){
$toform->categories = array_values($categoriesarr);
} else {
$toform->categories = array(0);
}
$toform->concept = $fromdb->concept;
$toform->definition = $fromdb->definition;
$toform->format = $fromdb->format;
trusttext_prepare_edit($toform->definition, $toform->format, can_use_html_editor(), $context);
$toform->approved = $glossary->defaultapproval or has_capability('mod/glossary:approve', $context);
$toform->usedynalink = $fromdb->usedynalink;
$toform->casesensitive = $fromdb->casesensitive;
$toform->fullmatch = $fromdb->fullmatch;
$toform->aliases = '';
$ineditperiod = ((time() - $fromdb->timecreated < $CFG->maxeditingtime) || $glossary->editalways);
if ((!$ineditperiod || $USER->id != $fromdb->userid) and !has_capability('mod/glossary:manageentries', $context)) {
if ( $USER->id != $fromdb->userid ) {
error(get_string('errcannoteditothers', 'glossary'));
} elseif (!$ineditperiod) {
error(get_string('erredittimeexpired', 'glossary'));
}
die;
}
if ( $aliases = get_records_menu("glossary_alias", "entryid", $e, '', 'id, alias') ) {
$toform->aliases = implode("\n", $aliases) . "\n";
}
$mform->set_data($toform);
}
}
$stredit = empty($e) ? get_string('addentry', 'glossary') : get_string("edit");
$navigation = build_navigation($stredit, $cm);
print_header_simple(format_string($glossary->name), "", $navigation, "",
"", true, "", navmenu($course, $cm));
print_heading(format_string($glossary->name));
/// Info box
///if ( $glossary->intro ) {
/// print_simple_box(format_text($glossary->intro), 'center', '70%', '', 5, 'generalbox', 'intro');
///}
/// Tabbed browsing sections
///$tab = GLOSSARY_ADDENTRY_VIEW;
///include("tabs.php");
if (!$e) {
require_capability('mod/glossary:write', $context);
}
$mform->display();
///glossary_print_tabbed_table_end();
print_footer($course);
?>