📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
tarimscripti.demodesign.com.tr
/
application
/
views
/
productcategory
📝
index.php
← Geri Dön
<main id="main"> <div class="slidebg"> <img src="public/img/slide.jpg"/> <div class="container"> <div class="page-title">ÜRÜNLERİMİZ</div> </div> </div> <section class="content"> <div class="container"> <div class="col-md-2 product-container"> <div class="row head"><h2>KATEGORİLER</h2></div> <div class="clearfix"></div> <div class="row"> <ul class="nav side-menu"> <?php foreach ($menus as $list): ?> <li> <a href="<?= clink(array('@productcategory', $list->slug, $list->id)) ?>"><?php echo $list->title ?></a> <?php if ($list->childs): ?> <ul class="sub "> <?php foreach ($list->childs as $child): ?> <li> <a href="<?= clink(array('@productcategory', $child->slug, $child->id)) ?>"><?php echo $child->title ?></a> </li> <?php endforeach; ?> </ul> <?php endif ?> </li> <?php endforeach; ?> </ul> </div> </div> <div class="col-md-10"> <div class="navigation"> <figcaption>ÜRÜN GRUPLARI</figcaption> <div class="line1"></div> </div> <div class="col-md-12 urunlerbox"> <?php $c=50; foreach ($categories as $urunler): ?> <div class="col-md-3 col-sm-6 col-xs-12 boxes" data-appear-animation="fadeInDown" data-appear-animation-delay="<?php echo $c+=150; ?>"> <div class="line1"></div> <div class="line2"></div> <div class="line3"></div> <div class="line4"></div> <div class="line5"></div> <figure> <a href="<?php echo clink(array('@productcategory', $urunler->slug, $urunler->id)) ?>"><img src="<?= uploadPath($urunler->image, 'productcategory') ?>" alt="<?php echo htmlspecialchars($urunler->title) ?>" title="<?php echo htmlspecialchars($urunler->title) ?>"/></a> <figcaption> <h2><?php echo $urunler->title; ?></h2> </figcaption> </figure> </div> <?php endforeach; ?> </div> </div> </div> </section>
💾 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