mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 07:28:31 +01:00
234 lines
8.8 KiB
PHP
234 lines
8.8 KiB
PHP
|
<?PHP // $Id$
|
||
|
|
||
|
/// This page allows to edit entries categories for a particular instance of glossary
|
||
|
|
||
|
require_once("../../config.php");
|
||
|
require_once("lib.php");
|
||
|
|
||
|
require_variable($id); // Course Module ID, or
|
||
|
optional_variable($cat); // category ID
|
||
|
optional_variable($action); // what to do
|
||
|
optional_variable($confirm); // confirm the action
|
||
|
|
||
|
optional_variable($name); // confirm the action
|
||
|
|
||
|
$action = strtolower($action);
|
||
|
|
||
|
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");
|
||
|
}
|
||
|
|
||
|
if (! $glossary = get_record("glossary", "id", $cm->instance)) {
|
||
|
error("Course module is incorrect");
|
||
|
}
|
||
|
|
||
|
require_login($course->id);
|
||
|
|
||
|
if ( !isteacher($course->id) ) {
|
||
|
error("You must be a teacher to use this page.");
|
||
|
}
|
||
|
|
||
|
// add_to_log($course->id, "glossary", "edit categories", "view.php?id=$cm->id", "$glossary->id");
|
||
|
|
||
|
if ($course->category) {
|
||
|
$navigation = "<A HREF=\"../../course/view.php?id=$course->id\">$course->shortname</A> ->";
|
||
|
}
|
||
|
|
||
|
$strglossaries = get_string("modulenameplural", "glossary");
|
||
|
$strglossary = get_string("modulename", "glossary");
|
||
|
|
||
|
print_header("$course->shortname: $glossary->name", "$course->fullname",
|
||
|
"$navigation <A HREF=index.php?id=$course->id>$strglossaries</A> -> $glossary->name",
|
||
|
"", "", true, update_module_button($cm->id, $course->id, $strglossary),
|
||
|
navmenu($course, $cm));
|
||
|
|
||
|
if ( $cat ) {
|
||
|
$category = get_record("glossary_categories","id",$cat);
|
||
|
|
||
|
if ( $action == "edit" ) {
|
||
|
if ( $confirm ) {
|
||
|
$action = "";
|
||
|
$CategoryObject->id = $cat;
|
||
|
$CategoryObject->name = $name;
|
||
|
|
||
|
if ( !update_record("glossary_categories", $CategoryObject) ) {
|
||
|
error("Weird error. The category was not updated.");
|
||
|
|
||
|
redirect("editcategories.php?id=$cm->id");
|
||
|
}
|
||
|
|
||
|
} else {
|
||
|
echo "<p align=\"center\">" . get_string("edit"). " " . get_string("category","glossary") . "<font size=\"3\">";
|
||
|
|
||
|
$name = $category->name;
|
||
|
require "editcategories.html";
|
||
|
print_footer();
|
||
|
die;
|
||
|
}
|
||
|
} elseif ( $action == "delete" ) {
|
||
|
if ( $confirm ) {
|
||
|
|
||
|
delete_records("glossary_entries_categories","categoryid", $cat);
|
||
|
delete_records("glossary_categories","id", $cat);
|
||
|
|
||
|
print_simple_box_start("center","40%", "#FFBBBB");
|
||
|
echo "<center>" . get_string("categorydeleted","glossary") ."</center>";
|
||
|
echo "</center>";
|
||
|
print_simple_box_end();
|
||
|
|
||
|
print_footer($course);
|
||
|
|
||
|
add_to_log($course->id, "glossary", "delete category", "editcategories.php?id=$cm->id", $cat);
|
||
|
|
||
|
redirect("editcategories.php?id=$cm->id");
|
||
|
} else {
|
||
|
echo "<p align=\"center\">" . get_string("delete"). " " . get_string("category","glossary") . "<font size=\"3\">";
|
||
|
|
||
|
print_simple_box_start("center","40%", "#FFBBBB");
|
||
|
echo "<center><b>$category->name</b><br>";
|
||
|
|
||
|
$num_entries = count_records("glossary_entries_categories","categoryid",$category->id);
|
||
|
if ( $num_entries ) {
|
||
|
print_string("deletingnoneemptycategory","glossary");
|
||
|
}
|
||
|
echo "<p>";
|
||
|
print_string("areyousuredelete","glossary");
|
||
|
|
||
|
?>
|
||
|
<form name="form" method="post" action="editcategories.php">
|
||
|
|
||
|
<input type="hidden" name=id value="<?php p($cm->id) ?>">
|
||
|
<input type="hidden" name=action value="delete">
|
||
|
<input type="hidden" name=confirm value="1">
|
||
|
<input type="hidden" name=cat value="<?php echo $cat ?>">
|
||
|
<table border=0 widTH=100><tr><td align=right width=50%>
|
||
|
<input type="submit" value=" <?php print_string("yes")?> ">
|
||
|
</form>
|
||
|
</td><td align=left width=50%>
|
||
|
<?
|
||
|
unset($options);
|
||
|
$options = array ("id" => $id);
|
||
|
print_single_button("editcategories.php", $options, get_string("no") );
|
||
|
echo "</td></tr></table>";
|
||
|
echo "</center>";
|
||
|
print_simple_box_end();
|
||
|
}
|
||
|
}
|
||
|
} elseif ( $action == "add" ) {
|
||
|
if ( $confirm ) {
|
||
|
$dupcategory = get_record("glossary_categories","lcase(name)",strtolower($name));
|
||
|
if ( $dupcategory ) {
|
||
|
echo "<p align=\"center\">" . get_string("add"). " " . get_string("category","glossary") . "<font size=\"3\">";
|
||
|
|
||
|
print_simple_box_start("center","40%", "#FFBBBB");
|
||
|
echo "<center>" . get_string("duplicatedcategory","glossary") ."</center>";
|
||
|
echo "</center>";
|
||
|
print_simple_box_end();
|
||
|
|
||
|
print_footer($course);
|
||
|
|
||
|
redirect("editcategories.php?id=$cm->id&action=add&&name=$name");
|
||
|
|
||
|
} else {
|
||
|
$action = "";
|
||
|
$CategoryObject->name = $name;
|
||
|
$CategoryObject->glossaryid = $glossary->id;
|
||
|
|
||
|
if ( ! $CategoryObject->id = insert_record("glossary_categories", $CategoryObject) ) {
|
||
|
error("Weird error. The category was not inserted.");
|
||
|
|
||
|
redirect("editcategories.php?id=$cm->id");
|
||
|
} else {
|
||
|
add_to_log($course->id, "glossary", "add category", "editcategories.php?id=$cm->id", $cat);
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
echo "<p align=\"center\">" . get_string("add"). " " . get_string("category","glossary") . "<font size=\"3\">";
|
||
|
$name="";
|
||
|
require "editcategories.html";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if ( $action ) {
|
||
|
|
||
|
print_footer();
|
||
|
die;
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
|
||
|
|
||
|
<p align="center"><? p(get_string("edit")) ?> <? p(get_string("categories","glossary")) ?><font size="3">
|
||
|
|
||
|
<FORM name="theform" method="post" <?=$onsubmit ?> action="editcategories.php">
|
||
|
<table width="40%" class=generalbox cellpadding=5 bgcolor="<? p($THEME->cellheading)?>">
|
||
|
<tr>
|
||
|
<td width="90%" align="center"><b>
|
||
|
<? p(get_string("categories","glossary")) ?></b></td>
|
||
|
<td width="10%" align="center"><b>
|
||
|
<? p(get_string("action")) ?></b></td>
|
||
|
</tr>
|
||
|
<tr><td width=100% colspan=2 bgcolor="<? p($THEME->cellheading2)?>">
|
||
|
|
||
|
<table width=100%>
|
||
|
<?
|
||
|
$categories = get_records("glossary_categories","glossaryid",$glossary->id,"name ASC");
|
||
|
|
||
|
if ( $categories ) {
|
||
|
foreach ($categories as $category) {
|
||
|
$num_entries = count_records("glossary_entries_categories","categoryid",$category->id);
|
||
|
?>
|
||
|
<tr bgcolor="<? p($THEME->cellheading2)?>">
|
||
|
<td width="90%" align="left">
|
||
|
<?
|
||
|
echo "<b>$category->name</b> <font size=-1>($num_entries " . get_string("entries","glossary") . ")</font>";
|
||
|
?>
|
||
|
</td>
|
||
|
<td width="10%" align="center"><b>
|
||
|
<?
|
||
|
echo "<a href=\"editcategories.php?id=$cm->id&action=delete&cat=$category->id\"><img alt=\"" . get_string("delete") . "\"src=\"../../pix/t/delete.gif\" height=11 width=11 border=0></a> ";
|
||
|
echo "<a href=\"editcategories.php?id=$cm->id&action=edit&cat=$category->id\"><img alt=\"" . get_string("edit") . "\" src=\"../../pix/t/edit.gif\" height=11 width=11 border=0></a>";
|
||
|
?>
|
||
|
</b></td>
|
||
|
</tr>
|
||
|
|
||
|
<?
|
||
|
}
|
||
|
}
|
||
|
?>
|
||
|
</table>
|
||
|
|
||
|
</td>
|
||
|
<tr>
|
||
|
<td width=100% colspan=2 align=center bgcolor="<? p($THEME->cellheading2)?>">
|
||
|
<?
|
||
|
|
||
|
$options['id'] = $cm->id;
|
||
|
$options['action'] = "add";
|
||
|
|
||
|
echo "<table border=0><tr><td align=right>";
|
||
|
echo print_single_button("editcategories.php", $options, get_string("add") . " " . get_string("category","glossary"), "get");
|
||
|
echo "</td><td align=left>";
|
||
|
unset($options['action']);
|
||
|
$options['currentview'] = "categories";
|
||
|
echo print_single_button("view.php", $options, get_string("back","glossary") );
|
||
|
echo "</td></tr>";
|
||
|
echo "</tablee>";
|
||
|
|
||
|
?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</table>
|
||
|
</p>
|
||
|
|
||
|
|
||
|
</form>
|
||
|
|
||
|
<? print_footer() ?>
|