-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7807b80
Showing
5,141 changed files
with
779,605 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
*.png | ||
admin/backup_soal/ | ||
config/config.candy.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
RewriteEngine On | ||
RewriteRule ^index\.php$ - [L] | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteRule . index.php [L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# CANDYCBT v 2.8 r3 | ||
CANDYCBT merupakan aplikasi yang dibuat untuk ujian berbasis komputer | ||
bisa digunakan untuk PTS/PAS/USBN/SIMULASIUNBK | ||
|
||
## Requirement | ||
PHP Version : PHP 7.x, Recommended PHP 7.4 | ||
|
||
MariaDB Version : 10.x | ||
|
||
## Installation | ||
|
||
Use git command to clone repo | ||
|
||
```bash | ||
git clone https://github.com/sutam21/candycbt | ||
``` | ||
|
||
Open url to install database | ||
```bash | ||
http://yourdomain/yourpath/ | ||
``` | ||
|
||
## Admin Login | ||
|
||
```bash | ||
http://yourdomain/yourpath/admin/ | ||
|
||
user : admin | ||
password : usbk2020 | ||
``` | ||
|
||
## Zone Donation | ||
Dukung kami dengan cara donasi ke Rekening dibawah ini, donasi anda sangat bermanfaat untuk pengembangan kami selanjutnya | ||
|
||
Owner (Pajar Sidik N) | ||
```bash | ||
BNI : 0318610166 | ||
``` | ||
|
||
Pengguna (Shinau Lee Been Vinter) | ||
|
||
DANA : https://link.dana.id/minta/2miwb92pk58 | ||
```bash | ||
Briva BRI : 8881 0 0857 1868 3442 | ||
|
||
Briva BCA : 3901 0857 1868 3442 | ||
``` | ||
|
||
## Contact | ||
https://t.me/bkprogrammer (Shinau Lee Been Vinter) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
<?php | ||
require("../config/config.default.php"); | ||
require("../config/config.function.php"); | ||
require("../config/functions.crud.php"); | ||
$id_siswa = (isset($_SESSION['id_siswa'])) ? $_SESSION['id_siswa'] : 0; | ||
if (isset($_GET['pg'])) { | ||
$pg = $_GET['pg']; | ||
if ($pg == 'waktu') { | ||
echo $waktu; | ||
} elseif ($pg == 'log') { | ||
$logC = 0; | ||
echo "<div class='direct-chat-messages' style='height:470px'>"; | ||
$logQ = mysqli_query($koneksi, "SELECT * FROM log ORDER BY date DESC limit 6"); | ||
while ($log = mysqli_fetch_array($logQ)) { | ||
$logC++; | ||
$siswa = mysqli_fetch_array(mysqli_query($koneksi, "SELECT * FROM siswa WHERE id_siswa='$log[id_siswa]'")); | ||
if ($log['type'] == 'login' || $log['type'] == 'logout') { | ||
($log['type'] == 'login') ? $icon = 'fa-sign-in' : $icon = 'fa-sign-out'; | ||
($log['type'] == 'login') ? $color = 'text-green' : $color = 'text-red'; | ||
echo " | ||
<div class='direct-chat-msg' > | ||
<div class='direct-chat-info clearfix'> | ||
<span class='direct-chat-name pull-left'>$siswa[nama]</span> | ||
<span class='direct-chat-timestamp pull-right'>" . timeAgo($log['date']) . "</span> | ||
</div><!-- /.direct-chat-info --> | ||
<span class='direct-chat-img'><img src='../dist/img/avatar5.png' width=45></span><!-- /.direct-chat-img --> | ||
<div class='direct-chat-text'> | ||
<span class='$color'><i class='fa $icon'></i> " . ucfirst($log['text']) . "</span> | ||
</div><!-- /.direct-chat-text --> | ||
</div><!-- /.direct-chat-msg --> | ||
"; | ||
} else { | ||
($log['type'] == 'testongoing') ? $icon = 'fa-pencil-square-o' : $icon = 'fa-check-square-o'; | ||
echo " | ||
<div class='direct-chat-msg right'> | ||
<div class='direct-chat-info clearfix'> | ||
<span class='direct-chat-name pull-right'>$siswa[nama]</span> | ||
<span class='direct-chat-timestamp pull-left'>" . timeAgo($log['date']) . "</span> | ||
</div><!-- /.direct-chat-info --> | ||
<span class='direct-chat-img'><img src='../dist/img/avatar5.png' width=45></span><!-- /.direct-chat-img --> | ||
<div class='direct-chat-text'> | ||
<span><i class='fa $icon'></i> " . ucfirst($log['text']) . "...</span> | ||
</div><!-- /.direct-chat-text --> | ||
</div><!-- /.direct-chat-msg --> | ||
"; | ||
} | ||
} | ||
if ($logC == 0) { | ||
echo "<p class='text-center'>Tidak ada aktifitas.</p>"; | ||
} | ||
echo "</div>"; | ||
} elseif ($pg == 'pengumuman') { | ||
$logC = 0; | ||
echo "<ul class='timeline'><li class='time-label'><span class='bg-blue'>- Terbaru -</span></li>"; | ||
$logQ = mysqli_query($koneksi, "SELECT * FROM pengumuman ORDER BY date DESC"); | ||
|
||
while ($log = mysqli_fetch_array($logQ)) { | ||
$logC++; | ||
$user = mysqli_fetch_array(mysqli_query($koneksi, "SELECT * FROM pengawas WHERE id_pengawas='$log[user]'")); | ||
if ($log['type'] == 'internal') { | ||
$bg = 'bg-green'; | ||
$color = 'text-green'; | ||
} else { | ||
$bg = 'bg-blue'; | ||
$color = 'text-blue'; | ||
} | ||
echo " | ||
<!-- timeline time label --> | ||
<li><i class='fa fa-envelope $bg'></i> | ||
<div class='timeline-item'> | ||
<span class='time'> <i class='fa fa-calendar'></i> " . buat_tanggal('d-m-Y', $log['date']) . " <i class='fa fa-clock-o'></i> " . buat_tanggal('h:i', $log['date']) . "</span> | ||
<h3 class='timeline-header' style='background-color:#f9f0d5'><a class='$color' href='#'>$log[judul]</a> <small> $user[nama]</small> | ||
</h3> | ||
<div class='timeline-body'> | ||
" . ucfirst($log['text']) . " | ||
</div> | ||
</div> | ||
</li> | ||
"; | ||
} | ||
if ($logC == 0) { | ||
echo "<p class='text-center'>Tidak ada aktifitas.</p>"; | ||
} | ||
echo "</ul>"; | ||
} elseif ($pg == 'pengumumansiswa') { | ||
$logC = 0; | ||
echo "<ul class='timeline'><br>"; | ||
$logQ = mysqli_query($koneksi, "SELECT * FROM pengumuman where type='eksternal' ORDER BY date DESC"); | ||
|
||
while ($log = mysqli_fetch_array($logQ)) { | ||
$logC++; | ||
$user = mysqli_fetch_array(mysqli_query($koneksi, "SELECT * FROM pengawas WHERE id_pengawas='$log[user]'")); | ||
if ($log['type'] == 'internal') { | ||
$bg = 'bg-green'; | ||
$color = 'text-green'; | ||
} else { | ||
$bg = 'bg-blue'; | ||
$color = 'text-blue'; | ||
} | ||
echo " | ||
<!-- timeline time label --> | ||
<li><i class='fa fa-envelope $bg'></i> | ||
<div class='timeline-item'> | ||
<span class='time'> <i class='fa fa-calendar'></i> " . buat_tanggal('d-m-Y', $log['date']) . " <i class='fa fa-clock-o'></i> " . buat_tanggal('h:i', $log['date']) . "</span> | ||
<h3 class='timeline-header' style='background-color:#f9f0d5'><a class='$color' href='#'>$log[judul]</a> <small> $user[nama]</small> | ||
</h3> | ||
<div class='timeline-body'> | ||
" . ucfirst($log['text']) . " | ||
</div> | ||
</div> | ||
</li> | ||
"; | ||
} | ||
if ($logC == 0) { | ||
echo "<p class='text-center'>Tidak ada aktifitas.</p>"; | ||
} | ||
echo "</ul>"; | ||
} elseif ($pg == 'token') { | ||
function create_random($length) | ||
{ | ||
$data = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; | ||
$string = ''; | ||
for ($i = 0; $i < $length; $i++) { | ||
$pos = rand(0, strlen($data) - 1); | ||
$string .= $data[$pos]; | ||
} | ||
return $string; | ||
} | ||
$token = create_random(6); | ||
$now = date('Y-m-d H:i:s'); | ||
echo $token; | ||
$cek = mysqli_num_rows(mysqli_query($koneksi, "select * from token")); | ||
if ($cek <> 0) { | ||
$query = mysqli_fetch_array(mysqli_query($koneksi, "select time from token")); | ||
$time = $query['time']; | ||
$tgl = buat_tanggal('H:i:s', $time); | ||
$exec = mysqli_query($koneksi, "update token set token='$token', time='$now' where id_token='1'"); | ||
} else { | ||
$exec = mysqli_query($koneksi, "INSERT INTO token (token,masa_berlaku) VALUES ('$token','00:15:00')"); | ||
} | ||
} | ||
} |
Oops, something went wrong.