Removing unused files.
authorrkingdon <rkingdon>
Mon, 13 Oct 2003 12:42:58 +0000 (12:42 +0000)
committerrkingdon <rkingdon>
Mon, 13 Oct 2003 12:42:58 +0000 (12:42 +0000)
mod/dialogue/edit.html [deleted file]
mod/dialogue/edit.php [deleted file]

diff --git a/mod/dialogue/edit.html b/mod/dialogue/edit.html
deleted file mode 100644 (file)
index a557e0d..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<FORM name="theform" method="post" <?=$onsubmit ?> action="edit.php">
-<table><tr>
-    <td align=right>
-    <font size="1">
-     <?PHP
-        helpbutton("reading", get_string("helpreading"), "moodle", true, true);
-        echo "<br />";
-        helpbutton("writing", get_string("helpwriting"), "moodle", true, true);
-        echo "<br />";
-        if ($usehtmleditor) {
-           helpbutton("richtext", get_string("helprichtext"), "moodle", true, true);
-        } else {
-           emoticonhelpbutton("theform", "text");
-        } 
-      ?>
-     <br />
-    </font>
-    </td>
-</tr></table>
-
-<? print_textarea($usehtmleditor, 20, 60, 630, 400, "text", $entry->text); ?>
-
-<p align=center>
-<?PHP
-   print_string("formattexttype");
-   echo ":&nbsp;";
-   choose_from_menu(format_text_menu(), "format", $entry->format, "");
-   echo "<font size=\"1\">";
-   helpbutton("textformat", get_string("helpformatting"));
-   echo "</font>";
-?>
-</p>
-
-<p align=center>
-<input type="hidden" name=id value="<?=$cm->id ?>">
-<input type="submit" value="<? print_string("savechanges") ?>">
-<input type="reset" value="<? print_string("revert") ?>">
-</P>
-</form>
-
-<?PHP 
-   if ($usehtmleditor) { 
-       print_richedit_javascript("theform", "text", "no");
-   }
-?>
-
diff --git a/mod/dialogue/edit.php b/mod/dialogue/edit.php
deleted file mode 100644 (file)
index 23ca38b..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-<?PHP // $Id$
-
-       require_once("../../config.php");
-
-    require_variable($id);    // Course Module ID
-
-    if (! $cm = get_record("course_modules", "id", $id)) {
-        error("Course Module ID was incorrect");
-    }
-
-    if (! $course = get_record("course", "id", $cm->course)) {
-        error("Course is misconfigured");
-    }
-
-    require_login($course->id);
-
-    if (isguest()) {
-        error("Guests are not allowed to edit dialogues", $_SERVER["HTTP_REFERER"]);
-    }
-
-    if (! $dialogue = get_record("dialogue", "id", $cm->instance)) {
-        error("Course module is incorrect");
-    }
-
-    $entry = get_record("dialogue_entries", "userid", $USER->id, "dialogue", $dialogue->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("dialogue_entries", $newentry)) {
-                               error("Could not update your dialogue");
-                       }
-            add_to_log($course->id, "dialogue", "update entry", "view.php?id=$cm->id", "$newentry->id");
-               } else {
-            $newentry->userid = $USER->id;
-            $newentry->dialogue = $dialogue->id;
-            $newentry->text = $form->text;
-            $newentry->format = $form->format;
-            $newentry->modified = $timenow;
-                       if (! $newentry->id = insert_record("dialogue_entries", $newentry)) {
-                               error("Could not insert a new dialogue entry");
-                       }
-            add_to_log($course->id, "dialogue", "add entry", "view.php?id=$cm->id", "$newentry->id");
-               } 
-               
-               redirect("view.php?id=$cm->id");
-               die;
-       }
-
-/// Otherwise fill and print the form.
-
-    $strdialogue = get_string("modulename", "dialogue");
-    $strdialogues = get_string("modulenameplural", "dialogue");
-    $stredit = get_string("edit");
-
-    if ($usehtmleditor = can_use_richtext_editor()) {
-        $defaultformat = FORMAT_HTML;
-        $onsubmit = "onsubmit=\"copyrichtext(theform.text);\"";
-    } else {
-        $defaultformat = FORMAT_MOODLE;
-        $onsubmit = "";
-    }
-
-    if (empty($entry)) {
-        $entry->text = "";
-        $entry->format = $defaultformat;
-    }
-
-    print_header("$course->shortname: $dialogue->name", "$course->fullname",
-                 "<A HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</A> -> 
-                  <A HREF=\"index.php?id=$course->id\">$strdialogues</A> -> 
-                  <A HREF=\"view.php?id=$cm->id\">$dialogue->name</A> -> $stredit", "theform.text",
-                  "", true, "", navmenu($course, $cm));
-
-    echo "<CENTER>\n";
-
-    print_simple_box( text_to_html($dialogue->intro) , "center");
-
-    echo "<BR>";
-
-       include("edit.html");
-
-    print_footer($course);
-
-?>