add flutter

This commit is contained in:
Ariska
2026-03-11 15:29:37 +07:00
parent c253e1a370
commit 619d758027
9490 changed files with 135801 additions and 1353 deletions

View File

@@ -5,11 +5,16 @@
<div class="card">
<div class="card-body">
<h4 class="card-title">Kirim Notifikasi</h4>
<?php if ($this->session->flashdata()) : ?>
<?php if ($this->session->flashdata('send')) : ?>
<div class="alert alert-success" role="alert">
<?php echo $this->session->flashdata('send'); ?>
</div>
<?php endif; ?>
<?php if ($this->session->flashdata('error')) : ?>
<div class="alert alert-danger" role="alert">
<?php echo $this->session->flashdata('error'); ?>
</div>
<?php endif; ?>
<?= form_open_multipart('appnotification/send'); ?>
<div class="form-group">
<label for="newscategory">Kirim Ke</label>

0
backendpanel/application/views/appsettings/addbank.php Normal file → Executable file
View File

View File

0
backendpanel/application/views/appsettings/index.php Normal file → Executable file
View File

View File

View File

0
backendpanel/application/views/dashboard/index.php Normal file → Executable file
View File

7
backendpanel/application/views/drivers/detail.php Normal file → Executable file
View File

@@ -30,6 +30,8 @@
<?= $driver['no_ktp'] ?></a>
<a class="d-block text-center text-dark" href="#"><?= $driver['email'] ?></a>
<a class="d-block text-center text-dark" href="#"><?= $driver['no_telepon'] ?></a>
<a class="d-block text-center text-dark" href="#">reg_id :
<?= $driver['reg_id'] ?></a>
<?php if ($driver['status'] == 0) { ?>
<a class="d-block text-center" href=" <?= base_url(); ?>newregistration/confirm/<?= $driver['id'] ?>"> <button class="btn btn-outline-primary mr-2">Confirm</button>
@@ -189,6 +191,11 @@
</div>
</div>
<div class="form-group">
<label for="reg_id">FCM Reg ID (device token)</label>
<input type="text" class="form-control" name="reg_id" value="<?= $driver['reg_id'] ?>">
</div>
<div class=" form-group">
<label for="birthdate">Tanggal Lahir</label>
<input type="date" class="form-control" name="tgl_lahir" value="<?= $driver['tgl_lahir'] ?>" required>

0
backendpanel/application/views/drivers/index.php Normal file → Executable file
View File

View File

View File

View File

0
backendpanel/application/views/errors/cli/error_db.php Normal file → Executable file
View File

View File

View File

View File

0
backendpanel/application/views/errors/cli/index.html Normal file → Executable file
View File

View File

View File

View File

View File

View File

0
backendpanel/application/views/errors/html/index.html Normal file → Executable file
View File

0
backendpanel/application/views/errors/index.html Normal file → Executable file
View File

0
backendpanel/application/views/includes/footer.php Normal file → Executable file
View File

0
backendpanel/application/views/includes/header.php Normal file → Executable file
View File

0
backendpanel/application/views/index.html Normal file → Executable file
View File

0
backendpanel/application/views/login/index.php Normal file → Executable file
View File

0
backendpanel/application/views/mitra/detail.php Normal file → Executable file
View File

0
backendpanel/application/views/mitra/edititem.php Normal file → Executable file
View File

0
backendpanel/application/views/mitra/index.php Normal file → Executable file
View File

0
backendpanel/application/views/mitra/newreg.php Normal file → Executable file
View File

View File

0
backendpanel/application/views/news/addcategory.php Normal file → Executable file
View File

0
backendpanel/application/views/news/addnews.php Normal file → Executable file
View File

0
backendpanel/application/views/news/editnews.php Normal file → Executable file
View File

0
backendpanel/application/views/news/index.php Normal file → Executable file
View File

0
backendpanel/application/views/nodata.php Normal file → Executable file
View File

View File

View File

0
backendpanel/application/views/partnerjob/index.php Normal file → Executable file
View File

View File

View File

0
backendpanel/application/views/partnerregion/index.php Normal file → Executable file
View File

0
backendpanel/application/views/profile/index.php Normal file → Executable file
View File

0
backendpanel/application/views/profile/index_lawas.php Normal file → Executable file
View File

View File

View File

0
backendpanel/application/views/profile/tambahrole.php Normal file → Executable file
View File

View File

View File

View File

View File

View File

0
backendpanel/application/views/promocode/index.php Normal file → Executable file
View File

View File

View File

0
backendpanel/application/views/promoslider/index.php Normal file → Executable file
View File

0
backendpanel/application/views/resetpass.php Normal file → Executable file
View File

0
backendpanel/application/views/sendemail/index.php Normal file → Executable file
View File

0
backendpanel/application/views/services/addservice.php Normal file → Executable file
View File

View File

0
backendpanel/application/views/services/index.php Normal file → Executable file
View File

0
backendpanel/application/views/success.php Normal file → Executable file
View File

0
backendpanel/application/views/transaction/index.php Normal file → Executable file
View File

0
backendpanel/application/views/users/detailusers.php Normal file → Executable file
View File

0
backendpanel/application/views/users/index.php Normal file → Executable file
View File

0
backendpanel/application/views/users/tambahuser.php Normal file → Executable file
View File

0
backendpanel/application/views/wallet/index.php Normal file → Executable file
View File

9
backendpanel/application/views/wallet/tambahtopup.php Normal file → Executable file
View File

@@ -27,7 +27,8 @@
<label for="id_Pelanggan">User</label>
<select class="js-example-basic-single" style="width:100%" name="id_pelanggan">
<?php foreach ($saldo as $sl) {
if (substr($sl['id_user'], 0, 1) == 'P') { ?>
$nm = isset($sl['fullnama']) ? trim((string)$sl['fullnama']) : '';
if (substr($sl['id_user'], 0, 1) == 'P' && $nm !== '') { ?>
<option value="<?= $sl['id_user'] ?>"><?= $sl['fullnama'] ?> (<?= $currency['duit'] ?><?= number_format($sl['saldo'] , 0, ".", ".") ?>)</option>
<?php }
} ?>
@@ -38,7 +39,8 @@
<label for="id_driver">Driver</label>
<select class="js-example-basic-single" style="width:100%" name="id_driver">
<?php foreach ($saldo as $sl) {
if (substr($sl['id_user'], 0, 1) == 'D') { ?>
$nm = isset($sl['nama_driver']) ? trim((string)$sl['nama_driver']) : '';
if (substr($sl['id_user'], 0, 1) == 'D' && $nm !== '') { ?>
<option value="<?= $sl['id_user'] ?>"><?= $sl['nama_driver'] ?> (<?= $currency['duit'] ?><?= number_format($sl['saldo'] , 0, ".", ".") ?>)
</option>
<?php }
@@ -50,7 +52,8 @@
<label for="id_mitra">Owner</label>
<select class="js-example-basic-single" style="width:100%" name="id_mitra">
<?php foreach ($saldo as $sl) {
if (substr($sl['id_user'], 0, 1) == 'M') { ?>
$nm = isset($sl['nama_mitra']) ? trim((string)$sl['nama_mitra']) : '';
if (substr($sl['id_user'], 0, 1) == 'M' && $nm !== '') { ?>
<option value="<?= $sl['id_user'] ?>"><?= $sl['nama_mitra'] ?> (<?= $currency['duit'] ?><?= number_format($sl['saldo'] , 0, ".", ".") ?>)
</option>
<?php }

View File

0
backendpanel/application/views/welcome_message.php Normal file → Executable file
View File