5867bfb50e
You can now hide/show individual activity modules and even delete them completely! For example, if you hide the "choice" module, then all choice activities will be hidden throughout the whole site, and "Choice" will not appear on any "Add..." menu. Deleting a module is a complete deletion of all data from the database. If you want to try out the deletion on a real module, I suggest the pgassignment module, since it will soon be deleted from CVS anyway (because it's being replaced with workshop). Look for "Manage modules" on the admin menu.
1162 lines
42 KiB
PHP
1162 lines
42 KiB
PHP
<? // $Id$
|
|
// Library of useful functions
|
|
|
|
|
|
if (defined('COURSE_MAX_LOG_DISPLAY')) { // Being included again - should never happen!!
|
|
return;
|
|
}
|
|
|
|
define('COURSE_MAX_LOG_DISPLAY', 150); // days
|
|
|
|
define('COURSE_MAX_LOGS_PER_PAGE', 1000); // records
|
|
|
|
define('COURSE_LIVELOG_REFRESH', 60); // Seconds
|
|
|
|
define('COURSE_MAX_RECENT_PERIOD', 604800); // A week, in seconds
|
|
|
|
|
|
|
|
function print_log_selector_form($course, $selecteduser=0, $selecteddate="today") {
|
|
|
|
global $USER, $CFG;
|
|
|
|
// Get all the possible users
|
|
$users = array();
|
|
|
|
if ($course->category) {
|
|
if ($courseusers = get_course_users($course->id, "u.lastaccess DESC")) {
|
|
foreach ($courseusers as $courseuser) {
|
|
$users[$courseuser->id] = "$courseuser->firstname $courseuser->lastname";
|
|
}
|
|
}
|
|
if ($guest = get_guest()) {
|
|
$users[$guest->id] = "$guest->firstname $guest->lastname";
|
|
}
|
|
}
|
|
|
|
if (isadmin()) {
|
|
if ($ccc = get_records("course", "", "", "fullname")) {
|
|
foreach ($ccc as $cc) {
|
|
if ($cc->category) {
|
|
$courses["$cc->id"] = "$cc->fullname";
|
|
} else {
|
|
$courses["$cc->id"] = " $cc->fullname (Site)";
|
|
}
|
|
}
|
|
}
|
|
asort($courses);
|
|
}
|
|
|
|
|
|
$strftimedate = get_string("strftimedate");
|
|
$strftimedaydate = get_string("strftimedaydate");
|
|
|
|
asort($users);
|
|
|
|
// Get all the possible dates
|
|
// Note that we are keeping track of real (GMT) time and user time
|
|
// User time is only used in displays - all calcs and passing is GMT
|
|
|
|
$timenow = time(); // GMT
|
|
|
|
// What day is it now for the user, and when is midnight that day (in GMT).
|
|
$timemidnight = $today = usergetmidnight($timenow);
|
|
|
|
// Put today up the top of the list
|
|
$dates = array("$timemidnight" => get_string("today").", ".userdate($timenow, $strftimedate) );
|
|
|
|
if (! $course->startdate) {
|
|
$course->startdate = $course->timecreated;
|
|
}
|
|
|
|
$numdates = 1;
|
|
while ($timemidnight > $course->startdate and $numdates < 365) {
|
|
$timemidnight = $timemidnight - 86400;
|
|
$timenow = $timenow - 86400;
|
|
$dates["$timemidnight"] = userdate($timenow, $strftimedaydate);
|
|
$numdates++;
|
|
}
|
|
|
|
if ($selecteddate == "today") {
|
|
$selecteddate = $today;
|
|
}
|
|
|
|
echo "<CENTER>";
|
|
echo "<FORM ACTION=log.php METHOD=get>";
|
|
if (isadmin()) {
|
|
choose_from_menu ($courses, "id", $course->id, "");
|
|
} else {
|
|
echo "<INPUT TYPE=hidden NAME=id VALUE=\"$course->id\">";
|
|
}
|
|
if ($course->category) {
|
|
choose_from_menu ($users, "user", $selecteduser, get_string("allparticipants") );
|
|
}
|
|
choose_from_menu ($dates, "date", $selecteddate, get_string("alldays"));
|
|
echo "<INPUT TYPE=submit VALUE=\"".get_string("showtheselogs")."\">";
|
|
echo "</FORM>";
|
|
echo "</CENTER>";
|
|
}
|
|
|
|
function make_log_url($module, $url) {
|
|
switch ($module) {
|
|
case "course":
|
|
case "user":
|
|
case "file":
|
|
case "login":
|
|
case "lib":
|
|
case "admin":
|
|
return "/$module/$url";
|
|
break;
|
|
default:
|
|
return "/mod/$module/$url";
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
function print_log($course, $user=0, $date=0, $order="ORDER BY l.time ASC") {
|
|
// It is assumed that $date is the GMT time of midnight for that day,
|
|
// and so the next 86400 seconds worth of logs are printed.
|
|
|
|
global $CFG;
|
|
|
|
if ($course->category) {
|
|
$selector = "WHERE l.course='$course->id' AND l.userid = u.id";
|
|
|
|
} else {
|
|
$selector = "WHERE l.userid = u.id"; // Show all courses
|
|
if ($ccc = get_courses(-1)) {
|
|
foreach ($ccc as $cc) {
|
|
$courses[$cc->id] = "$cc->shortname";
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($user) {
|
|
$selector .= " AND l.userid = '$user'";
|
|
}
|
|
|
|
if ($date) {
|
|
$enddate = $date + 86400;
|
|
$selector .= " AND l.time > '$date' AND l.time < '$enddate'";
|
|
}
|
|
|
|
$order = $order." LIMIT ".COURSE_MAX_LOGS_PER_PAGE; // To keep it manageable
|
|
|
|
if (!$logs = get_logs($selector, $order)) {
|
|
notify("No logs found!");
|
|
print_footer($course);
|
|
exit;
|
|
}
|
|
|
|
$count=0;
|
|
$tt = getdate(time());
|
|
$today = mktime (0, 0, 0, $tt["mon"], $tt["mday"], $tt["year"]);
|
|
if (($totalcountlogs = count($logs)) == COURSE_MAX_LOGS_PER_PAGE) {
|
|
$totalcountlogs = "$totalcountlogs (+)";
|
|
}
|
|
|
|
$strftimedatetime = get_string("strftimedatetime");
|
|
|
|
echo "<p align=center>";
|
|
print_string("displayingrecords", "", $totalcountlogs);
|
|
echo "</p>";
|
|
|
|
echo "<table border=0 align=center cellpadding=3 cellspacing=3>";
|
|
foreach ($logs as $log) {
|
|
|
|
if ($ld = get_record("log_display", "module", "$log->module", "action", "$log->action")) {
|
|
$log->info = get_field($ld->mtable, $ld->field, "id", $log->info);
|
|
}
|
|
|
|
echo "<tr nowrap>";
|
|
if (! $course->category) {
|
|
echo "<td nowrap><font size=2><a href=\"view.php?id=$log->course\">".$courses[$log->course]."</a></td>";
|
|
}
|
|
echo "<td nowrap align=right><font size=2>".userdate($log->time, "%a")."</td>";
|
|
echo "<td nowrap><font size=2>".userdate($log->time, $strftimedatetime)."</td>";
|
|
echo "<td nowrap><font size=2>";
|
|
link_to_popup_window("/lib/ipatlas/plot.php?address=$log->ip&user=$log->userid", "ipatlas","$log->ip", 400, 700);
|
|
echo "</td>";
|
|
echo "<td nowrap><font size=2><a href=\"../user/view.php?id=$log->userid&course=$log->course\"><b>$log->firstname $log->lastname</b></td>";
|
|
echo "<td nowrap><font size=2>";
|
|
link_to_popup_window( make_log_url($log->module,$log->url), "fromloglive","$log->module $log->action", 400, 600);
|
|
echo "</td>";
|
|
echo "<td nowrap><font size=2>$log->info</td>";
|
|
echo "</tr>";
|
|
}
|
|
echo "</table>";
|
|
}
|
|
|
|
|
|
function print_all_courses($category="all", $style="full", $maxcount=999, $width=180) {
|
|
global $CFG, $THEME, $USER;
|
|
|
|
if ($category == "all") {
|
|
$courses = get_courses();
|
|
|
|
} else if ($category == "my") {
|
|
if (isset($USER->id)) {
|
|
if ($courses = get_courses()) {
|
|
foreach ($courses as $key => $course) {
|
|
if (!isteacher($course->id) and !isstudent($course->id)) {
|
|
unset($courses[$key]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
} else {
|
|
$courses = get_courses($category);
|
|
}
|
|
|
|
if ($style == "minimal") {
|
|
$count = 0;
|
|
if (empty($THEME->custompix)) {
|
|
$icon = "<img src=\"$CFG->wwwroot/pix/i/course.gif\" height=16 width=16 alt=\"".get_string("course")."\">";
|
|
} else {
|
|
$icon = "<img src=\"$CFG->wwwroot/theme/$CFG->theme/pix/i/course.gif\" height=16 width=16 alt=\"".get_string("course")."\">";
|
|
}
|
|
if ($courses) {
|
|
foreach ($courses as $course) {
|
|
$moddata[]="<a title=\"$course->shortname\" href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->fullname</a>";
|
|
$modicon[]=$icon;
|
|
if ($count++ >= $maxcount) {
|
|
break;
|
|
}
|
|
}
|
|
$fulllist = "<p><a href=\"$CFG->wwwroot/course/\">".get_string("fulllistofcourses")."</a>...";
|
|
} else {
|
|
$moddata = array();
|
|
$modicon = array();
|
|
$fulllist = get_string("nocoursesyet");
|
|
}
|
|
print_side_block(get_string("courses"), "", $moddata, $modicon, $fulllist, $width);
|
|
|
|
} else if ($courses) {
|
|
foreach ($courses as $course) {
|
|
print_course($course);
|
|
echo "<br />\n";
|
|
}
|
|
|
|
} else {
|
|
echo "<p>".get_string("nocoursesyet")."</p>";
|
|
}
|
|
}
|
|
|
|
|
|
function print_course($course) {
|
|
|
|
global $CFG, $THEME;
|
|
|
|
if (! $site = get_site()) {
|
|
error("Could not find a site!");
|
|
}
|
|
|
|
if (empty($THEME->custompix)) {
|
|
$pixpath = "$CFG->wwwroot/pix";
|
|
} else {
|
|
$pixpath = "$CFG->wwwroot/theme/$CFG->theme/pix";
|
|
}
|
|
|
|
print_simple_box_start("CENTER", "100%");
|
|
|
|
echo "<TABLE WIDTH=100%>";
|
|
echo "<TR VALIGN=top>";
|
|
echo "<TD VALIGN=top WIDTH=50%>";
|
|
echo "<P><FONT SIZE=3><B><A TITLE=\"".get_string("entercourse")."\"
|
|
HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->fullname</A></B></FONT></P>";
|
|
if ($teachers = get_course_teachers($course->id)) {
|
|
echo "<P><FONT SIZE=1>\n";
|
|
foreach ($teachers as $teacher) {
|
|
if ($teacher->authority > 0) {
|
|
if (!$teacher->role) {
|
|
$teacher->role = $course->teacher;
|
|
}
|
|
echo "$teacher->role: <A HREF=\"$CFG->wwwroot/user/view.php?id=$teacher->id&course=$site->id\">$teacher->firstname $teacher->lastname</A><BR>";
|
|
}
|
|
}
|
|
echo "</FONT></P>";
|
|
}
|
|
if ($course->guest) {
|
|
$strallowguests = get_string("allowguests");
|
|
echo "<A TITLE=\"$strallowguests\" HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">";
|
|
echo "<IMG VSPACE=4 ALT=\"$strallowguests\" HEIGHT=16 WIDTH=16 BORDER=0 SRC=\"$pixpath/i/user.gif\"></A> ";
|
|
}
|
|
if ($course->password) {
|
|
$strrequireskey = get_string("requireskey");
|
|
echo "<A TITLE=\"$strrequireskey\" HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">";
|
|
echo "<IMG VSPACE=4 ALT=\"$strrequireskey\" HEIGHT=16 WIDTH=16 BORDER=0 SRC=\"$pixpath/i/key.gif\"></A>";
|
|
}
|
|
|
|
|
|
echo "</TD><TD VALIGN=top WIDTH=50%>";
|
|
echo "<P><FONT SIZE=2>".text_to_html($course->summary)."</FONT></P>";
|
|
echo "</TD></TR>";
|
|
echo "</TABLE>";
|
|
|
|
print_simple_box_end();
|
|
}
|
|
|
|
function print_headline($text, $size=2) {
|
|
echo "<B><FONT SIZE=\"$size\">$text</FONT></B><BR>\n";
|
|
}
|
|
|
|
function print_recent_activity($course) {
|
|
// $course is an object
|
|
// This function trawls through the logs looking for
|
|
// anything new since the user's last login
|
|
|
|
global $CFG, $USER;
|
|
|
|
if (! $USER->lastlogin ) {
|
|
echo "<p align=center><font size=1>";
|
|
print_string("welcometocourse", "", $course->shortname);
|
|
echo "</font></p>";
|
|
return;
|
|
} else {
|
|
echo "<p align=center><font size=1>";
|
|
echo get_string("yourlastlogin").":<BR>";
|
|
echo userdate($USER->lastlogin, get_string("strftimerecentfull"));
|
|
echo "</font></p>";
|
|
}
|
|
|
|
$timestart = $USER->lastlogin;
|
|
$timemaxrecent = time() - COURSE_MAX_RECENT_PERIOD;
|
|
if ($timestart < $timemaxrecent) {
|
|
$timestart = $timemaxrecent;
|
|
}
|
|
|
|
|
|
// Firstly, have there been any new enrolments?
|
|
|
|
$heading = false;
|
|
$content = false;
|
|
|
|
$logs = get_records_select("log", "time > '$timestart' AND course = '$course->id' AND
|
|
module = 'course' AND action = 'enrol'", "time ASC");
|
|
|
|
if ($logs) {
|
|
foreach ($logs as $key => $log) {
|
|
if (! $heading) {
|
|
print_headline(get_string("newusers").":");
|
|
$heading = true;
|
|
$content = true;
|
|
}
|
|
$user = get_record("user", "id", $log->info);
|
|
if (isstudent($course->id, $user->id)) {
|
|
echo "<p><font size=1><a href=\"../user/view.php?id=$user->id&course=$course->id\">$user->firstname $user->lastname</a></font></p>";
|
|
}
|
|
}
|
|
}
|
|
|
|
// Next, have there been any modifications to the course structure?
|
|
|
|
$logs = get_records_select("log", "time > '$timestart' AND course = '$course->id' AND
|
|
module = 'course' AND action LIKE '% mod'", "time ASC");
|
|
|
|
if ($logs) {
|
|
foreach ($logs as $key => $log) {
|
|
$info = split(" ", $log->info);
|
|
$modname = get_field($info[0], "name", "id", $info[1]);
|
|
//Create a temp valid module structure (course,id)
|
|
$tempmod->course = $log->course;
|
|
$tempmod->id = $info[1];
|
|
//Obtain the visible property from the instance
|
|
$modvisible = instance_is_visible($info[0],$tempmod);
|
|
|
|
//Only if the mod is visible
|
|
if ($modvisible) {
|
|
switch ($log->action) {
|
|
case "add mod":
|
|
$stradded = get_string("added", "moodle", get_string("modulename", $info[0]));
|
|
$changelist["$log->info"] = array ("operation" => "add", "text" => "$stradded:<BR><A HREF=\"$CFG->wwwroot/course/$log->url\">$modname</A>");
|
|
break;
|
|
case "update mod":
|
|
$strupdated = get_string("updated", "moodle", get_string("modulename", $info[0]));
|
|
if (empty($changelist["$log->info"])) {
|
|
$changelist["$log->info"] = array ("operation" => "update", "text" => "$strupdated:<BR><A HREF=\"$CFG->wwwroot/course/$log->url\">$modname</A>");
|
|
}
|
|
break;
|
|
case "delete mod":
|
|
if (!empty($changelist["$log->info"]["operation"]) and
|
|
$changelist["$log->info"]["operation"] == "add") {
|
|
$changelist["$log->info"] = NULL;
|
|
} else {
|
|
$strdeleted = get_string("deletedactivity", "moodle", get_string("modulename", $info[0]));
|
|
$changelist["$log->info"] = array ("operation" => "delete", "text" => $strdeleted);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($changelist)) {
|
|
foreach ($changelist as $changeinfo => $change) {
|
|
if ($change) {
|
|
$changes[$changeinfo] = $change;
|
|
}
|
|
}
|
|
if (count($changes) > 0) {
|
|
print_headline(get_string("courseupdates").":");
|
|
$content = true;
|
|
foreach ($changes as $changeinfo => $change) {
|
|
echo "<p><font size=1>".$change["text"]."</font></p>";
|
|
}
|
|
}
|
|
}
|
|
|
|
// Now display new things from each module
|
|
|
|
$mods = get_list_of_plugins("mod");
|
|
|
|
$isteacher = isteacher($course->id);
|
|
|
|
foreach ($mods as $mod) { // Each module gets it's own logs and prints them
|
|
include_once("$CFG->dirroot/mod/$mod/lib.php");
|
|
$print_recent_activity = $mod."_print_recent_activity";
|
|
if (function_exists($print_recent_activity)) {
|
|
$modcontent = $print_recent_activity($course, $isteacher, $timestart);
|
|
if ($modcontent) {
|
|
$content = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (! $content) {
|
|
echo "<font size=2>".get_string("nothingnew")."</font>";
|
|
}
|
|
}
|
|
|
|
|
|
function get_array_of_activities($courseid) {
|
|
// For a given course, returns an array of course activity objects
|
|
// Each item in the array contains he following properties:
|
|
// cm - course module id
|
|
// mod - name of the module (eg forum)
|
|
// section - the number of the section (eg week or topic)
|
|
// name - the name of the instance
|
|
// visible - is the instance visible or not
|
|
|
|
$mod = array();
|
|
|
|
if (!$rawmods = get_course_mods($courseid)) {
|
|
return NULL;
|
|
}
|
|
|
|
if ($sections = get_records("course_sections", "course", $courseid, "section ASC")) {
|
|
foreach ($sections as $section) {
|
|
if (!empty($section->sequence)) {
|
|
$sequence = explode(",", $section->sequence);
|
|
foreach ($sequence as $seq) {
|
|
if (empty($rawmods[$seq])) {
|
|
continue;
|
|
}
|
|
$mod[$seq]->cm = $rawmods[$seq]->id;
|
|
$mod[$seq]->mod = $rawmods[$seq]->modname;
|
|
$mod[$seq]->section = $section->section;
|
|
$mod[$seq]->name = urlencode(get_field($rawmods[$seq]->modname, "name", "id", $rawmods[$seq]->instance));
|
|
$mod[$seq]->visible = $rawmods[$seq]->visible;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return $mod;
|
|
}
|
|
|
|
|
|
|
|
|
|
function get_all_mods($courseid, &$mods, &$modnames, &$modnamesplural, &$modnamesused) {
|
|
// Returns a number of useful structures for course displays
|
|
|
|
$mods = NULL; // course modules indexed by id
|
|
$modnames = NULL; // all course module names
|
|
$modnamesplural= NULL; // all course module names (plural form)
|
|
$modnamesused = NULL; // course module names used
|
|
|
|
if ($allmods = get_records("modules")) {
|
|
foreach ($allmods as $mod) {
|
|
if ($mod->visible) {
|
|
$modnames[$mod->name] = get_string("modulename", "$mod->name");
|
|
$modnamesplural[$mod->name] = get_string("modulenameplural", "$mod->name");
|
|
}
|
|
}
|
|
asort($modnames);
|
|
} else {
|
|
error("No modules are installed!");
|
|
}
|
|
|
|
if ($rawmods = get_course_mods($courseid)) {
|
|
foreach($rawmods as $mod) { // Index the mods
|
|
$mods[$mod->id] = $mod;
|
|
$mods[$mod->id]->modfullname = $modnames[$mod->modname];
|
|
if ($mod->visible or isteacher($courseid)) {
|
|
$modnamesused[$mod->modname] = $modnames[$mod->modname];
|
|
}
|
|
}
|
|
if ($modnamesused) {
|
|
asort($modnamesused);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function get_all_sections($courseid) {
|
|
|
|
return get_records("course_sections", "course", "$courseid", "section",
|
|
"section, id, course, summary, sequence, visible");
|
|
}
|
|
|
|
function course_set_display($courseid, $display=0) {
|
|
global $USER;
|
|
|
|
if (empty($USER)) {
|
|
return false;
|
|
}
|
|
|
|
if ($display == "all" or empty($display)) {
|
|
$display = 0;
|
|
}
|
|
|
|
if (record_exists("course_display", "userid", $USER->id, "course", $courseid)) {
|
|
set_field("course_display", "display", $display, "userid", $USER->id, "course", $courseid);
|
|
} else {
|
|
$record->userid = $USER->id;
|
|
$record->course = $courseid;
|
|
$record->display = $display;
|
|
if (!insert_record("course_display", $record)) {
|
|
notify("Could not save your course display!");
|
|
}
|
|
}
|
|
|
|
return $USER->display[$courseid] = $display; // Note: = not ==
|
|
}
|
|
|
|
function set_section_visible($courseid, $sectionnumber, $visibility) {
|
|
/// For a given course section, markes it visible or hidden,
|
|
/// and does the same for every activity in that section
|
|
|
|
if ($section = get_record("course_sections", "course", $courseid, "section", $sectionnumber)) {
|
|
set_field("course_sections", "visible", "$visibility", "id", $section->id);
|
|
if (!empty($section->sequence)) {
|
|
$modules = explode(",", $section->sequence);
|
|
foreach ($modules as $moduleid) {
|
|
set_field("course_modules", "visible", "$visibility", "id", $moduleid);
|
|
}
|
|
}
|
|
rebuild_course_cache($courseid);
|
|
}
|
|
}
|
|
|
|
function print_section_block($heading, $course, $section, $mods, $modnames, $modnamesused,
|
|
$absolute=true, $width="100%", $isediting=false) {
|
|
|
|
global $CFG;
|
|
|
|
$modinfo = unserialize($course->modinfo);
|
|
$moddata = array();
|
|
$modicon = array();
|
|
$editbuttons = "";
|
|
|
|
if (!empty($section->sequence)) {
|
|
|
|
$sectionmods = explode(",", $section->sequence);
|
|
|
|
foreach ($sectionmods as $modnumber) {
|
|
$mod = $mods[$modnumber];
|
|
if ($isediting) {
|
|
$editbuttons = make_editing_buttons($mod->id, $absolute, $mod->visible);
|
|
}
|
|
if ($mod->visible or isteacher($course->id)) {
|
|
$instancename = urldecode($modinfo[$modnumber]->name);
|
|
if ($mod->visible) {
|
|
$link_css = "";
|
|
} else {
|
|
$link_css = " class=\"dimmed\" ";
|
|
}
|
|
$modicon[] = "<img src=\"$CFG->wwwroot/mod/$mod->modname/icon.gif\" height=\"16\" width=\"16\" alt=\"$mod->modfullname\">";
|
|
$moddata[] = "<a title=\"$mod->modfullname\" $link_css href=\"$CFG->wwwroot/mod/$mod->modname/view.php?id=$mod->id\">$instancename</a><BR>$editbuttons";
|
|
}
|
|
}
|
|
}
|
|
if ($isediting) {
|
|
$editmenu = popup_form("$CFG->wwwroot/course/mod.php?id=$course->id&section=$section->section&add=",
|
|
$modnames, "section0", "", get_string("add")."...", "mods", get_string("activities"), true);
|
|
$editmenu = "<div align=right>$editmenu</div>";
|
|
} else {
|
|
$editmenu = "";
|
|
}
|
|
|
|
print_side_block($heading, "", $moddata, $modicon, $editmenu, $width);
|
|
}
|
|
|
|
|
|
function print_section($course, $section, $mods, $modnamesused, $absolute=false, $width="100%") {
|
|
global $CFG;
|
|
|
|
$modinfo = unserialize($course->modinfo);
|
|
|
|
echo "<table width=\"$width\"><tr><td>\n";
|
|
if (!empty($section->sequence)) {
|
|
|
|
$sectionmods = explode(",", $section->sequence);
|
|
|
|
foreach ($sectionmods as $modnumber) {
|
|
if (empty($mods[$modnumber])) {
|
|
continue;
|
|
}
|
|
$mod = $mods[$modnumber];
|
|
if ($mod->visible or isteacher($course->id)) {
|
|
$instancename = urldecode($modinfo[$modnumber]->name);
|
|
if ($mod->visible) {
|
|
$link_css = "";
|
|
} else {
|
|
$link_css = " class=\"dimmed\" ";
|
|
}
|
|
echo "<img src=\"$CFG->wwwroot/mod/$mod->modname/icon.gif\" height=16 width=16 alt=\"$mod->modfullname\">";
|
|
echo " <font size=2><a title=\"$mod->modfullname\" $link_css";
|
|
echo " href=\"$CFG->wwwroot/mod/$mod->modname/view.php?id=$mod->id\">$instancename</a></font>";
|
|
}
|
|
if (isediting($course->id)) {
|
|
echo " ";
|
|
echo make_editing_buttons($mod->id, $absolute, $mod->visible);
|
|
}
|
|
if ($mod->visible or isteacher($course->id)) {
|
|
echo "<br />\n";
|
|
}
|
|
}
|
|
}
|
|
echo "</td></tr></table><br />\n\n";
|
|
}
|
|
|
|
|
|
function rebuild_course_cache($courseid=0) {
|
|
// Rebuilds the cached list of course activities stored in the database
|
|
// If a courseid is not specified, then all are rebuilt
|
|
|
|
if ($courseid) {
|
|
$select = "id = '$courseid'";
|
|
} else {
|
|
$select = "";
|
|
}
|
|
|
|
if ($courses = get_records_select("course", $select)) {
|
|
foreach ($courses as $course) {
|
|
$modinfo = serialize(get_array_of_activities($course->id));
|
|
if (!set_field("course", "modinfo", $modinfo, "id", $course->id)) {
|
|
notify("Could not cache module information for course '$course->fullname'!");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function print_heading_block($heading, $width="100%", $class="headingblock") {
|
|
global $THEME;
|
|
|
|
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\">";
|
|
echo "<tr><td bgcolor=\"$THEME->cellheading\" class=\"$class\">";
|
|
echo stripslashes($heading);
|
|
echo "</td></tr></table>";
|
|
}
|
|
|
|
function print_side_block($heading="", $content="", $list=NULL, $icons=NULL, $footer="", $width=180) {
|
|
// Prints a nice side block with an optional header. The content can either
|
|
// be a block of HTML or a list of text with optional icons.
|
|
|
|
global $THEME;
|
|
|
|
print_side_block_start($heading, $width);
|
|
|
|
if ($content) {
|
|
echo "$content";
|
|
} else {
|
|
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"2\">";
|
|
foreach ($list as $key => $string) {
|
|
echo "<tr bgcolor=\"$THEME->cellcontent2\">";
|
|
if ($icons) {
|
|
echo "<td class=\"sideblocklinks\" valign=\"top\" width=\"16\">".$icons[$key]."</td>";
|
|
}
|
|
echo "<td class=\"sideblocklinks\" valign=\"top\" width=\"*\"><font size=\"-1\">$string</font></td>";
|
|
echo "</tr>";
|
|
}
|
|
if ($footer) {
|
|
echo "<tr bgcolor=\"$THEME->cellcontent2\">";
|
|
if ($icons) {
|
|
echo "<td class=\"sideblocklinks\" valign=\"top\" width=\"16\"> </td>";
|
|
}
|
|
echo "<td class=\"sideblocklinks\"><font size=\"-1\">$footer</td>";
|
|
echo "</tr>";
|
|
}
|
|
echo "</table>";
|
|
}
|
|
|
|
print_side_block_end();
|
|
}
|
|
|
|
function print_side_block_start($heading="", $width=180, $class="sideblockmain") {
|
|
// Starts a nice side block with an optional header.
|
|
|
|
global $THEME;
|
|
|
|
echo "<table class=\"sideblock\" width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\">";
|
|
if ($heading) {
|
|
echo "<tr>";
|
|
echo "<td class=\"sideblockheading\" bgcolor=\"$THEME->cellheading\">$heading</td>";
|
|
echo "</tr>";
|
|
}
|
|
echo "<tr>";
|
|
echo "<td class=\"$class\" bgcolor=\"$THEME->cellcontent2\">";
|
|
}
|
|
|
|
function print_side_block_end() {
|
|
echo "</td></tr>";
|
|
echo "</table><br />";
|
|
}
|
|
|
|
|
|
function print_admin_links ($siteid, $width=180) {
|
|
global $CFG, $THEME;
|
|
|
|
if (empty($THEME->custompix)) {
|
|
$icon = "<img src=\"$CFG->wwwroot/pix/i/settings.gif\" height=16 width=16 alt=\"\">";
|
|
} else {
|
|
$icon = "<img src=\"$CFG->wwwroot/theme/$CFG->theme/pix/i/settings.gif\" height=16 width=16 alt=\"\">";
|
|
}
|
|
|
|
if (isadmin()) {
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/config.php\">".get_string("configvariables")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/site.php\">".get_string("sitesettings")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/course/log.php?id=$siteid\">".get_string("sitelogs")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/theme/index.php\">".get_string("choosetheme")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/lang.php\">".get_string("checklanguage")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/modules.php\">".get_string("managemodules")."</a>";
|
|
$modicon[]=$icon;
|
|
if (file_exists("$CFG->dirroot/$CFG->admin/$CFG->dbtype")) {
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/$CFG->dbtype/frame.php\">".get_string("managedatabase")."</a>";
|
|
$modicon[]=$icon;
|
|
}
|
|
$moddata[]="<hr>";
|
|
$modicon[]="";
|
|
}
|
|
if (iscreator()) {
|
|
$moddata[]="<a href=\"$CFG->wwwroot/course/edit.php\">".get_string("addnewcourse")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/course/teacher.php\">".get_string("assignteachers")."</a>";
|
|
$modicon[]=$icon;
|
|
$fulladmin = "";
|
|
}
|
|
if (isadmin()) {
|
|
$moddata[]="<a href=\"$CFG->wwwroot/course/categories.php\">".get_string("categories")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/course/delete.php\">".get_string("deletecourse")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<hr>";
|
|
$modicon[]="";
|
|
if($CFG->auth == "email" || $CFG->auth == "none" || $CFG->auth == "manual"){
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/user.php?newuser=true\">".get_string("addnewuser")."</a>";
|
|
$modicon[]=$icon;
|
|
}
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/user.php\">".get_string("edituser")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/admin.php\">".get_string("assignadmins")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/creators.php\">".get_string("assigncreators")."</a>";
|
|
$modicon[]=$icon;
|
|
$moddata[]="<a href=\"$CFG->wwwroot/$CFG->admin/auth.php\">".get_string("authentication")."</a>";
|
|
$modicon[]=$icon;
|
|
$fulladmin = "<p><a href=\"$CFG->wwwroot/$CFG->admin/\">".get_string("admin")."</a>...";
|
|
}
|
|
|
|
print_side_block(get_string("administration"), "", $moddata, $modicon, $fulladmin, $width);
|
|
|
|
echo "<img src=\"$CFG->wwwroot/pix/spacer.gif\" width=\"$width\" height=1><br>";
|
|
}
|
|
|
|
function print_course_admin_links($course, $width=180) {
|
|
global $USER, $CFG, $THEME;
|
|
|
|
if (isguest()) {
|
|
return true;
|
|
}
|
|
if (empty($THEME->custompix)) {
|
|
$pixpath = "$CFG->wwwroot/pix";
|
|
$modpixpath = "$CFG->wwwroot/mod";
|
|
} else {
|
|
$pixpath = "$CFG->wwwroot/theme/$CFG->theme/pix";
|
|
$modpixpath = "$CFG->wwwroot/theme/$CFG->theme/pix/mod";
|
|
}
|
|
if (isteacher($course->id)) {
|
|
$adminicon[]="<img src=\"$pixpath/i/edit.gif\" height=16 width=16 alt=\"\">";
|
|
if (isediting($course->id)) {
|
|
$admindata[]="<a href=\"view.php?id=$course->id&edit=off\">".get_string("turneditingoff")."</a>";
|
|
} else {
|
|
$admindata[]="<a href=\"view.php?id=$course->id&edit=on\">".get_string("turneditingon")."</a>";
|
|
}
|
|
$admindata[]="<a href=\"edit.php?id=$course->id\">".get_string("settings")."...</a>";
|
|
$adminicon[]="<img src=\"$pixpath/i/settings.gif\" height=16 width=16 alt=\"\">";
|
|
if (!$course->teachers) {
|
|
$course->teachers = get_string("defaultcourseteachers");
|
|
}
|
|
$admindata[]="<a href=\"teachers.php?id=$course->id\">$course->teachers...</a>";
|
|
$adminicon[]="<img src=\"$pixpath/i/settings.gif\" height=16 width=16 alt=\"\">";
|
|
|
|
$admindata[]="<a href=\"grades.php?id=$course->id\">".get_string("grades")."...</a>";
|
|
$adminicon[]="<img src=\"$pixpath/i/grades.gif\" height=16 width=16 alt=\"\">";
|
|
|
|
$admindata[]="<a href=\"log.php?id=$course->id\">".get_string("logs")."...</a>";
|
|
$adminicon[]="<img src=\"$pixpath/i/log.gif\" height=16 width=16 alt=\"\">";
|
|
|
|
$admindata[]="<a href=\"$CFG->wwwroot/files/index.php?id=$course->id\">".get_string("files")."...</a>";
|
|
$adminicon[]="<img src=\"$pixpath/i/files.gif\" height=16 width=16 alt=\"\">";
|
|
|
|
$admindata[]="<a href=\"$CFG->wwwroot/doc/view.php?id=$course->id&file=teacher.html\">".get_string("help")."...</a>";
|
|
$adminicon[]="<img src=\"$modpixpath/resource/icon.gif\" height=16 width=16 alt=\"\">";
|
|
|
|
if ($teacherforum = forum_get_course_forum($course->id, "teacher")) {
|
|
$admindata[]="<a href=\"$CFG->wwwroot/mod/forum/view.php?f=$teacherforum->id\">".get_string("nameteacher", "forum")."</a>";
|
|
$adminicon[]="<img src=\"$modpixpath/forum/icon.gif\" height=16 width=16 alt=\"\">";
|
|
}
|
|
} else {
|
|
$admindata[]="<a href=\"grade.php?id=$course->id\">".get_string("grades")."...</a>";
|
|
$adminicon[]="<img src=\"$pixpath/i/grades.gif\" height=16 width=16 alt=\"\">";
|
|
}
|
|
|
|
print_side_block(get_string("administration"), "", $admindata, $adminicon, "", $width);
|
|
}
|
|
|
|
function print_course_categories($categories, $selected="none", $width=180) {
|
|
global $CFG, $THEME, $USER;
|
|
|
|
$strallowguests = get_string("allowguests");
|
|
$strrequireskey = get_string("requireskey");
|
|
|
|
if (empty($THEME->custompix)) {
|
|
$pixpath = "$CFG->wwwroot/pix";
|
|
} else {
|
|
$pixpath = "$CFG->wwwroot/theme/$CFG->theme/pix";
|
|
}
|
|
|
|
if ($selected == "index") { // Print comprehensive index of categories with courses
|
|
if ($courses = get_courses()) {
|
|
if (isset($USER->id) and !isadmin()) {
|
|
print_simple_box_start("CENTER", "100%", $THEME->cellheading);
|
|
print_heading("<a href=\"course/index.php?category=my\">".get_string("mycourses")."</a>", "left");
|
|
$some = false;
|
|
echo "<ul>";
|
|
foreach ($courses as $key => $course) {
|
|
if (isteacher($course->id) or isstudent($course->id)) {
|
|
echo "<a href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->fullname</a>";
|
|
echo "<br />";
|
|
$some = true;
|
|
}
|
|
}
|
|
if (!$some) {
|
|
print_string("nocoursesyet");
|
|
}
|
|
echo "</ul>";
|
|
print_simple_box_end();
|
|
print_spacer(8,1);
|
|
}
|
|
foreach ($categories as $category) {
|
|
print_simple_box_start("CENTER", "100%");
|
|
print_heading("<a href=\"course/index.php?category=$category->id\">$category->name</a>", "left");
|
|
$some = false;
|
|
echo "<ul>";
|
|
foreach ($courses as $key => $course) {
|
|
if ($course->category == $category->id) {
|
|
echo "<a href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->fullname</a>";
|
|
echo " ";
|
|
unset($courses[$key]);
|
|
if ($course->guest ) {
|
|
echo "<a title=\"$strallowguests\" href=\"$CFG->wwwroot/course/view.php?id=$course->id\">";
|
|
echo "<img alt=\"\" height=16 width=16 border=0 src=\"$pixpath/i/user.gif\"></a>";
|
|
}
|
|
if ($course->password) {
|
|
echo "<a title=\"$strrequireskey\" href=\"$CFG->wwwroot/course/view.php?id=$course->id\">";
|
|
echo "<img alt=\"\" height=16 width=16 border=0 src=\"$pixpath/i/key.gif\"></a>";
|
|
}
|
|
echo "<br />";
|
|
$some = true;
|
|
}
|
|
}
|
|
if (!$some) {
|
|
print_string("nocoursesyet");
|
|
}
|
|
echo "</ul>";
|
|
print_simple_box_end();
|
|
print_spacer(8,1);
|
|
}
|
|
}
|
|
|
|
} else { // Print short list of categories only
|
|
foreach ($categories as $cat) {
|
|
$caticon[]="<img src=\"$pixpath/i/course.gif\" height=16 width=16>";
|
|
if ($cat->id == $selected) {
|
|
$catdata[]="$cat->name";
|
|
} else {
|
|
$catdata[]="<a href=\"$CFG->wwwroot/course/index.php?category=$cat->id\">$cat->name</a>";
|
|
}
|
|
}
|
|
$catdata[] = "<a href=\"$CFG->wwwroot/course/index.php?category=all\">".get_string("fulllistofcourses")."</a>";
|
|
$caticon[] = "";
|
|
if (isset($USER->id)) {
|
|
$catdata[] = "<a href=\"$CFG->wwwroot/course/index.php?category=my\">".get_string("mycourses")."</a>";
|
|
$caticon[] = "";
|
|
}
|
|
print_side_block(get_string("categories"), "", $catdata, $caticon, "", $width);
|
|
}
|
|
}
|
|
|
|
function print_log_graph($course, $userid=0, $type="course.png", $date=0) {
|
|
global $CFG;
|
|
if (empty($CFG->gdversion)) {
|
|
echo "(".get_string("gdneed").")";
|
|
} else {
|
|
echo "<IMG BORDER=0 SRC=\"$CFG->wwwroot/course/loggraph.php?id=$course->id&user=$userid&type=$type&date=$date\">";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/// MODULE FUNCTIONS /////////////////////////////////////////////////////////////////
|
|
|
|
function add_course_module($mod) {
|
|
GLOBAL $db;
|
|
|
|
$mod->added = time();
|
|
|
|
return insert_record("course_modules", $mod);
|
|
}
|
|
|
|
function add_mod_to_section($mod) {
|
|
// Returns the course_sections ID where the mod is inserted
|
|
GLOBAL $db;
|
|
|
|
if ($section = get_record("course_sections", "course", "$mod->course", "section", "$mod->section")) {
|
|
if (!empty($section->sequence)) {
|
|
$newsequence = "$section->sequence,$mod->coursemodule";
|
|
} else {
|
|
$newsequence = "$mod->coursemodule";
|
|
}
|
|
if (set_field("course_sections", "sequence", $newsequence, "id", $section->id)) {
|
|
return $section->id; // Return course_sections ID that was used.
|
|
} else {
|
|
return 0;
|
|
}
|
|
|
|
} else { // Insert a new record
|
|
$section->course = $mod->course;
|
|
$section->section = $mod->section;
|
|
$section->summary = "";
|
|
$section->sequence = $mod->coursemodule;
|
|
return insert_record("course_sections", $section);
|
|
}
|
|
}
|
|
|
|
function hide_course_module($mod) {
|
|
return set_field("course_modules", "visible", 0, "id", $mod);
|
|
}
|
|
|
|
function show_course_module($mod) {
|
|
return set_field("course_modules", "visible", 1, "id", $mod);
|
|
}
|
|
|
|
function delete_course_module($mod) {
|
|
return set_field("course_modules", "deleted", 1, "id", $mod);
|
|
}
|
|
|
|
function delete_mod_from_section($mod, $section) {
|
|
GLOBAL $db;
|
|
|
|
if ($section = get_record("course_sections", "id", "$section") ) {
|
|
|
|
$modarray = explode(",", $section->sequence);
|
|
|
|
if ($key = array_keys ($modarray, $mod)) {
|
|
array_splice($modarray, $key[0], 1);
|
|
$newsequence = implode(",", $modarray);
|
|
return set_field("course_sections", "sequence", $newsequence, "id", $section->id);
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
function move_module($cm, $move) {
|
|
GLOBAL $db;
|
|
|
|
if (!$move) {
|
|
return true;
|
|
}
|
|
|
|
if (! $thissection = get_record("course_sections", "id", $cm->section)) {
|
|
error("This course section doesn't exist");
|
|
}
|
|
|
|
$mods = explode(",", $thissection->sequence);
|
|
|
|
$len = count($mods);
|
|
$pos = array_keys($mods, $cm->id);
|
|
$thepos = $pos[0];
|
|
|
|
if ($len == 0 || count($pos) == 0 ) {
|
|
error("Very strange. Could not find the required module in this section.");
|
|
}
|
|
|
|
if ($len == 1) {
|
|
$first = true;
|
|
$last = true;
|
|
} else {
|
|
$first = ($thepos == 0);
|
|
$last = ($thepos == $len - 1);
|
|
}
|
|
|
|
if ($move < 0) { // Moving the module up
|
|
|
|
if ($first) {
|
|
if ($thissection->section == 1) { // First section, do nothing
|
|
return true;
|
|
} else { // Push onto end of previous section
|
|
$prevsectionnumber = $thissection->section - 1;
|
|
if (! $prevsection = get_record("course_sections", "course", "$thissection->course",
|
|
"section", "$prevsectionnumber")) {
|
|
error("Previous section ($prevsection->id) doesn't exist");
|
|
}
|
|
|
|
if (!empty($prevsection->sequence)) {
|
|
$newsequence = "$prevsection->sequence,$cm->id";
|
|
} else {
|
|
$newsequence = "$cm->id";
|
|
}
|
|
|
|
if (! set_field("course_sections", "sequence", $newsequence, "id", $prevsection->id)) {
|
|
error("Previous section could not be updated");
|
|
}
|
|
|
|
if (! set_field("course_modules", "section", $prevsection->id, "id", $cm->id)) {
|
|
error("Module could not be updated");
|
|
}
|
|
|
|
array_splice($mods, 0, 1);
|
|
$newsequence = implode(",", $mods);
|
|
if (! set_field("course_sections", "sequence", $newsequence, "id", $thissection->id)) {
|
|
error("Module could not be updated");
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
} else { // move up within this section
|
|
$swap = $mods[$thepos-1];
|
|
$mods[$thepos-1] = $mods[$thepos];
|
|
$mods[$thepos] = $swap;
|
|
|
|
$newsequence = implode(",", $mods);
|
|
if (! set_field("course_sections", "sequence", $newsequence, "id", $thissection->id)) {
|
|
error("This section could not be updated");
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} else { // Moving the module down
|
|
|
|
if ($last) {
|
|
$nextsectionnumber = $thissection->section + 1;
|
|
if ($nextsection = get_record("course_sections", "course", "$thissection->course",
|
|
"section", "$nextsectionnumber")) {
|
|
|
|
if (!empty($nextsection->sequence)) {
|
|
$newsequence = "$cm->id,$nextsection->sequence";
|
|
} else {
|
|
$newsequence = "$cm->id";
|
|
}
|
|
|
|
if (! set_field("course_sections", "sequence", $newsequence, "id", $nextsection->id)) {
|
|
error("Next section could not be updated");
|
|
}
|
|
|
|
if (! set_field("course_modules", "section", $nextsection->id, "id", $cm->id)) {
|
|
error("Module could not be updated");
|
|
}
|
|
|
|
array_splice($mods, $thepos, 1);
|
|
$newsequence = implode(",", $mods);
|
|
if (! set_field("course_sections", "sequence", $newsequence, "id", $thissection->id)) {
|
|
error("This section could not be updated");
|
|
}
|
|
return true;
|
|
|
|
} else { // There is no next section, so just return
|
|
return true;
|
|
|
|
}
|
|
} else { // move down within this section
|
|
$swap = $mods[$thepos+1];
|
|
$mods[$thepos+1] = $mods[$thepos];
|
|
$mods[$thepos] = $swap;
|
|
|
|
$newsequence = implode(",", $mods);
|
|
if (! set_field("course_sections", "sequence", $newsequence, "id", $thissection->id)) {
|
|
error("This section could not be updated");
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
function make_editing_buttons($moduleid, $absolute=false, $visible=true, $str=NULL) {
|
|
global $CFG, $THEME;
|
|
|
|
if (empty($str)) {
|
|
$str->delete = get_string("delete");
|
|
$str->moveup = get_string("moveup");
|
|
$str->movedown = get_string("movedown");
|
|
$str->update = get_string("update");
|
|
$str->hide = get_string("hide");
|
|
$str->show = get_string("show");
|
|
}
|
|
|
|
if ($absolute) {
|
|
$path = "$CFG->wwwroot/course";
|
|
} else {
|
|
$path = ".";
|
|
}
|
|
|
|
if (empty($THEME->custompix)) {
|
|
$pixpath = "$path/../pix";
|
|
} else {
|
|
$pixpath = "$path/../theme/$CFG->theme/pix";
|
|
}
|
|
|
|
if ($visible) {
|
|
$hideshow = " <a title=\"$str->hide\" href=\"$path/mod.php?hide=$moduleid\"><img
|
|
src=\"$pixpath/t/hide.gif\" hspace=2 height=11 width=11 border=0></a>";
|
|
} else {
|
|
$hideshow = " <a title=\"$str->show\" href=\"$path/mod.php?show=$moduleid\"><img
|
|
src=\"$pixpath/t/show.gif\" hspace=2 height=11 width=11 border=0></a>";
|
|
}
|
|
|
|
return "<a title=\"$str->delete\" href=\"$path/mod.php?delete=$moduleid\"><img
|
|
src=\"$pixpath/t/delete.gif\" height=11 width=11 border=0></a>
|
|
<a title=\"$str->moveup\" href=\"$path/mod.php?id=$moduleid&move=-1\"><img
|
|
src=\"$pixpath/t/up.gif\" height=11 width=11 border=0></a>
|
|
<a title=\"$str->movedown\" href=\"$path/mod.php?id=$moduleid&move=1\"><img
|
|
src=\"$pixpath/t/down.gif\" height=11 width=11 border=0></a>
|
|
<a title=\"$str->update\" href=\"$path/mod.php?update=$moduleid\"><img
|
|
src=\"$pixpath/t/edit.gif\" height=11 width=11 border=0></a> $hideshow";
|
|
}
|
|
|
|
?>
|