Add the main admin, dosen, mahasiswa, API, and service code needed to run the core legacy application with configurable upload storage.
39 lines
662 B
PHP
39 lines
662 B
PHP
<?php
|
|
|
|
switch ($_GET['menu']) {
|
|
case 'bimbingan':
|
|
include 'bimbingan.php';
|
|
break;
|
|
|
|
case 'forum':
|
|
include 'forum.php';
|
|
break;
|
|
|
|
case 'forumdosen':
|
|
include 'forumdosen.php';
|
|
break;
|
|
|
|
case 'history':
|
|
include 'history.php';
|
|
break;
|
|
|
|
case 'review':
|
|
include 'review.php';
|
|
break;
|
|
|
|
case 'jadwal':
|
|
include 'jadwal.php';
|
|
break;
|
|
|
|
case 'penilaian':
|
|
include 'penilaian.php';
|
|
break;
|
|
|
|
case 'berkas-mahasiswa':
|
|
include 'berkas_mahasiswa.php';
|
|
break;
|
|
default:
|
|
echo "<script>location.href='".DOSEN_PAGE."dashboard.php'</script>";
|
|
break;
|
|
}
|