<?php
include "konfig/library.php";
include "konfig/fungsi_tanggal.php";
//include "../konfig/fungsi_rupiah.php";
// Bagian Home
if ($_GET['module']=='home'){
include "content/dashboard.php";
}
elseif ($_GET['module']=='orderan'){
include "content/orderan/orderan.php";
}
elseif ($_GET['module']=='produk'){
include "content/produk/produk.php";
}
elseif ($_GET['module']=='icon'){
include "content/icon/icon.php";
}
elseif ($_GET['module']=='jaringan'){
include "content/jaringan/jaringan.php";
}
elseif ($_GET['module']=='kanvas'){
include "content/kanvas/kanvas.php";
}
elseif ($_GET['module']=='fbcwilayah'){
include "content/fbcwilayah/fbcwilayah.php";
}
elseif ($_GET['module']=='kunjungan'){
include "content/kunjungan/kunjungan.php";
}
elseif ($_GET['module']=='fbckunjungan'){
include "content/fbckunjungan/fbckunjungan.php";
}
elseif ($_GET['module']=='fbclaporan'){
include "content/fbclaporan/fbclaporan.php";
}
elseif ($_GET['module']=='peta'){
include "content/peta/peta.php";
}
elseif ($_GET['module']=='stok_opname'){
include "content/stok_opname/stok_opname.php";
}
elseif ($_GET['module']=='pembayaran'){
include "content/pembayaran/pembayaran.php";
}
elseif ($_GET['module']=='customer'){
include "content/customer/customer.php";
}
elseif ($_GET['module']=='password'){
include "content/password/password.php";
}
elseif ($_GET['module']=='setting'){
include "content/setting/setting.php";
}
elseif ($_GET['module']=='staff'){
include "content/staff/staff.php";
}
// Apabila modul tidak ditemukan
else{
echo "<p><b>MODUL BELUM ADA ATAU BELUM LENGKAP</b></p>";
}
?>