-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
executable file
·58 lines (47 loc) · 1.43 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* Skripsi - Universitas KH. A. Wahab Hasbullah.
*
* @package Skripsi Beta Version
* @author Fika Ridaul Maulayya <[email protected]>
*/
/* create environment */
include('library/environment.php');
/* end environment */
/* start get config */
include('library/config.php');
/* end get config */
/* start header */
include('part/header.php');
/* end header */
/* start content */
if(!isset($_GET['action'])){
require "module/home.php";
}else{
if($_GET['action'] == "home"){
require "module/home.php";
}elseif ($_GET['action'] == "semua-judul") {
$kode_prodi = '0';
$breadcrumb = 'Semua judul';
require "module/tabel-judul-skripsi.php";
}elseif ($_GET['action'] == "teknik-informatika") {
$kode_prodi = '1';
$breadcrumb = 'Teknik Informatika';
require "module/tabel-judul-skripsi.php";
}elseif ($_GET['action'] == "sistem-informasi") {
$kode_prodi = '2';
$breadcrumb = 'Sistem Informasi';
require "module/tabel-judul-skripsi.php";
}elseif ($_GET['action'] == "statistik") {
$kode_prodi = '';
$breadcrumb = 'Statistik';
require "module/statistik.php";
}else{
require "module/404.php";
}
}
/* end content */
/* start footer */
include('part/footer.php');
/* end footer */
?>