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