📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
qrmenuv2.demodesign.com.tr
/
admin
/
view
📝
modul.php
← Geri Dön
<?php require admin_view('include/header'); ?> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> QR Kod Modül Ayarları <small>Bu Bölümde İstemediğiniz yerleri kapata bilirsiniz...</small> </h1> <ol class="breadcrumb"> <li><a href="index"><i class="fa fa-dashboard"></i> Görsel Panel</a></li> <li class="active">Modül Ayarları</li> </ol> </section> <section class="content"> <div class="row"> <div class="col-lg-12"> <div class="box"> <div class="box-body"> <form action="" method="POST" enctype="multipart/form-data"> <div class="row"> <div class="col-lg-12"> <div class="col-lg-6"> <div class="form-group"> <label>Slider Durumu<small> ( Aktif Pasif Yapınız...)</small></label> <select class="form-control select2 custom-select" name="slider"> <option value="no" <?php if ($row['slider'] == "no") { echo "selected=\"select\""; } ?>>Pasif</option> <option value="yes" <?php if ($row['slider'] == "yes") { echo "selected=\"select\""; } ?>>Aktif</option> </select> </div> <div class="form-group"> <label>Sipariş Durumu<small> ( Aktif Pasif Yapınız...)</small></label> <select class="form-control select2 custom-select" name="siparisler"> <option value="no" <?php if ($row['siparisler'] == "no") { echo "selected=\"select\""; } ?>>Pasif</option> <option value="yes" <?php if ($row['siparisler'] == "yes") { echo "selected=\"select\""; } ?>>Aktif</option> </select> </div> <div class="form-group"> <label>Aboneler Durumu<small> (Aktif Pasif Yapınız...)</small></label> <select class="form-control select2 custom-select" name="abone"> <option value="no" <?php if ($row['abone'] == "no") { echo "selected=\"select\""; } ?>>Pasif</option> <option value="yes" <?php if ($row['abone'] == "yes") { echo "selected=\"select\""; } ?>>Aktif</option> </select> </div> <div class="form-group"> <label>Şeflerimiz Durumu<small> (Aktif Pasif Yapınız...)</small></label> <select class="form-control select2 custom-select" name="sefler"> <option value="no" <?php if ($row['sefler'] == "no") { echo "selected=\"select\""; } ?>>Pasif</option> <option value="yes" <?php if ($row['sefler'] == "yes") { echo "selected=\"select\""; } ?>>Aktif</option> </select> </div> <div class="form-group"> <label>Katagoriler Durumu<small> (Aktif Pasif Yapınız...)</small></label> <select class="form-control select2 custom-select" name="katagoriler"> <option value="no" <?php if ($row['katagoriler'] == "no") { echo "selected=\"select\""; } ?>>Pasif</option> <option value="yes" <?php if ($row['katagoriler'] == "yes") { echo "selected=\"select\""; } ?>>Aktif</option> </select> </div> </div> </div> <div class="col-lg-6"> <p>Modül ayarları en son <?= tarih('j F Y - H:i:s', $row['edit_date']); ?> tarihinde güncellediniz.</p> <button type="submit" name="editmodules" class="btn btn-primary pull-left">Güncelle</button> </div> </div> </form> </div> </div> </div> </div> </section> </div> <?php require admin_view('include/footer'); ?>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula