📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
tarimscripti.demodesign.com.tr
/
admin
/
views
/
home
/
users
📝
records.php
← Geri Dön
<?php echo $this->utils->alert(); ?> <div class="panel panel-default"> <div class="panel-heading"><i class="fa fa-table"></i> Kullanıcılar</div> <div class="panel-toolbar clearfix"> <div class="row"> <div class="col-md-4"> <?php if ($this->permission('user-delete')): ?> <a class="btn btn-sm btn-info checkall" data-toggle="button"><i class="fa fa-check-square-o"></i> Hepsini Seç</a> <a class="btn btn-sm btn-danger deleteall" href="<?php echo $this->module ?>/userDelete"><i class="fa fa-trash-o"></i></a> <?php endif; ?> <?php if ($this->permission('user-insert')): ?> <a class="btn btn-sm btn-success" href="<?php echo $this->module ?>/userInsert"><i class="fa fa-plus"></i> Yeni Kayıt</a> <?php endif; ?> </div> <div class="col-md-8 text-right"> <form class="form-inline" action="" method="get" id="filter" accept-charset="utf-8" style="display: inline-block;"> <?php $this->view('filter') ?> </form> </div> </div> </div> <table class="table table-bordered table-hover"> <thead> <tr> <th width="40" class="text-center"><i class="fa fa-ellipsis-v"></i></th> <th width="50">#</th> <th>Kullanıcı Adı</th> <th>Grubu</th> <th width="100" class="text-right">İşlem</th> </tr> </thead> <tbody> <?php foreach ($records as $item): ?> <tr> <td class="text-center"><input type="checkbox" class="checkall-item" value="<?php echo $item->id ?>" /></td> <td><?php echo $item->id ?></td> <td><?php echo $item->username ?></td> <td><?php echo $item->groupName ?></td> <td class="text-right"> <?php if ($this->permission('user-update')): ?> <a class="btn btn-xs btn-primary" href="<?php echo $this->module ?>/userUpdate/<?php echo $item->id ?>"><i class="fa fa-edit"></i></a> <?php endif; ?> <?php if ($this->permission('user-delete')): ?> <a class="btn btn-xs btn-danger confirm-delete" href="<?php echo $this->module ?>/userDelete/<?php echo $item->id ?>"><i class="fa fa-trash-o"></i></a> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php if (! empty($pagination)): ?> <div class="panel-footer"> <?php echo $pagination ?> </div> <?php endif; ?> </div>
💾 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