mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
20 lines
299 B
PHP
20 lines
299 B
PHP
<?PHP // $Id$
|
|
|
|
require("../config.php");
|
|
require("lib.php");
|
|
|
|
print_header("Courses", "Courses", "Courses", "");
|
|
|
|
optional_variable($cat, 1);
|
|
|
|
echo "<TABLE WIDTH=80% ALIGN=CENTER><TR><TD>";
|
|
|
|
print_all_courses($cat);
|
|
|
|
echo "</TD></TR></TABLE>";
|
|
|
|
print_footer();
|
|
|
|
?>
|
|
|
|
|