📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv4.demodesign.com.tr
📝
fotogaleri.php
← Geri Dön
<?php require_once 'ayar/Config.php'; ?> <!DOCTYPE html> <html lang="tr"> <head> <meta charset="utf-8"> <!--===== Meta =====--> <?php if ($Site->site_ayarlari('fotogaleri-title') != ''){ // Meta Title ?> <title> <?php echo $Site->site_ayarlari('fotogaleri-title'); ?> </title> <?php } else { ?> <title>Foto Galeri</title> <?php } ?> <?php if ($Site->site_ayarlari('fotogaleri-keywords') != ''){ // Meta Keywords ?> <meta name="keywords" content="<?php echo $Site->site_ayarlari('fotogaleri-keywords'); ?>"> <?php } else { ?> <?php } ?> <?php if ($Site->site_ayarlari('fotogaleri-description') != ''){ // Meta Description ?> <meta name="description" content="<?php echo $Site->site_ayarlari('fotogaleri-description'); ?>"> <?php } else { ?> <?php } ?> <!--===== Header =====--> <?php include('header.php'); ?> <!--===== Body =====--> <section class="beautypress-inner-welocme-section beautypress-bg parallax-bg" data-parallax="scroll" style="background-color:#<?php echo $Site->site_ayarlari('tema_renk2'); ?>;"> <div class="beautypress-black-overlay"></div> <div class="container"> <div class="beautypress-inner-welcome-content"> <h1 class="color-white"><i class="fa fa-camera" aria-hidden="true"></i> FOTOĞRAF GALERİSİ</h1> </div> <div class="beautypress-inner-welcome-footer-content"> <ul class="beautypress-breadcrumb"> <li><a href="./">ANA SAYFA</a></li> <li><a href="fotogaleri">FOTO GALERİ</a></li> </ul> </div> </div> </section> <!-- F. Galeri --><br> <!-- Photo gallery --> <div class="beautypress-photo-gallery-section beautypress-version-2 section-padding"> <div class="container"> <?php $galeri = $Site->galeri(); ?> <div align="center"> <button class="btn btn-default filter-button" data-filter="all"><b>Tümü</b></button> <?php $cats = $Site->getKategori(6); foreach ($cats as $cat) { ?> <button class="btn btn-default filter-button" data-filter="<?=$cat['sayfa_id']?>"><?=$cat['sayfa_baslik']?></button> <?php } ?> </div> <br/><br/> <div class="beautypress-photo-gallery-wraper"> <div class="beautypress-photo-gallery-grid-v3"> <?php foreach ($galeri as $key => $value) { if ($value['aktifkontrol'] == "aktif" || $Site->adminyetki(session("id"), 'yetki') == 1) { ?> <div class="beautypress-photo-gallery-grid-item-v3 makeup popup-gallery gallery_product col-lg-3 col-md-4 col-sm-4 col-xs-6 filter <?=$value['katalogKategori']?>"> <div class="beautypress-single-photo-gallery beautypress-3d"> <div class="beautypress-3d-project-card"> <img src="upload/<?=$value['galeriResim']?>" alt=""> <div class="beautypress-photo-gallery-content"> <a href="upload/<?=$value['galeriResim']?>" class="beautypress-image-popup beautypress-iocn-btn full-round-btn bg-color-cyan"> <i class="fa fa-eye"></i> </a> </div> <!-- .beautypress-photo-gallery-content END --> <div class="beautypress-gallery-overlay"></div> </div> </div> <!-- .beautypress-single-photo-gallery END --> </div> <?php } } ?> </div> <!-- .beautypress-photo-gallery-grid END --> </div> </div> </div> <!-- .beautypress-photo-gallery-section END --> <!-- Photo gallery --> <?php include('footer.php'); ?> <script> $(document).ready(function(){ $(".filter-button").click(function(){ var value = $(this).attr('data-filter'); if(value == "all") { //$('.filter').removeClass('hidden'); $('.filter').show('1000'); } else { $(".filter").not('.'+value).hide('3000'); $('.filter').filter('.'+value).show('3000'); } }); if ($(".filter-button").removeClass("active")) { $(this).removeClass("active"); } $(this).addClass("active"); }); </script>
💾 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