mirror of
https://github.com/moodle/moodle.git
synced 2025-06-03 14:46:35 +02:00
21 lines
290 B
PHP
21 lines
290 B
PHP
<?PHP // $Id$
|
|
|
|
require("../config.php");
|
|
require("lib.php");
|
|
|
|
print_header("Courses", "Courses", "Courses", "");
|
|
|
|
optional_variable($cat, 1);
|
|
|
|
print_simple_box_start("CENTER", "80%");
|
|
|
|
print_all_courses($cat);
|
|
|
|
print_simple_box_end();
|
|
|
|
print_footer();
|
|
|
|
?>
|
|
|
|
|