📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
supermarketscripti.demodesign.com.tr
/
application
/
views
/
product
📝
_messages.php
← Geri Dön
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <!--print error messages--> <?php if ($this->session->flashdata('errors')): ?> <div class="form-group"> <div class="error-message"> <?php echo $this->session->flashdata('errors'); ?> </div> </div> <?php endif; ?> <!--print custom error message--> <?php if ($this->session->flashdata('error')): ?> <div class="form-group"> <div class="alert alert-danger alert-dismissible fade show" role="alert"> <?php echo $this->session->flashdata('error'); ?> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> </div> <?php endif; ?> <!--print custom success message--> <?php if ($this->session->flashdata('success')): ?> <div class="form-group"> <div class="alert alert-success alert-dismissible fade show" role="alert"> <i class="icon-check"></i> <?php echo $this->session->flashdata('success'); ?> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> </div> <?php endif; ?>
💾 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