📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
otelscripti.demodesign.com.tr
/
application
/
views
/
content
📝
view.php
← Geri Dön
<main id="main"> <section class="banner"> <div class="bread" style="background-image: url(public/img/slider.png);"> <div class="container"> <h2 class="title"><?= $content->title ?></h2> </div> </div> </section> <section class="content"> <div class="container"> <div class="content-body"> <div class="row"> <div class="col-md-<?php echo ! empty($content->parent->childs) || ! empty($content->childs) ? 9:12 ?>"> <?php if (! empty($content->image)): ?> <img src="<?= uploadPath($content->image, 'content') ?>" style="max-width: 305px; margin: 0 15px 15px 0;" alt="<?= htmlspecialchars($content->title) ?>" align="left"> <?php endif; ?> <h5 class="captionLeft dib"></h5> <?= $content->detail ?> <?php $this->view('share', ['content' => $content->title]) ?> </div> <?php if (! empty($content->parent->childs) || ! empty($content->childs)): ?> <div class="col-md-3"> <?php if (! empty($content->parent->childs)): ?> <div class="list-group"> <a class="list-group-item" href="<?php echo clink(array('@content', $content->parent->slug, $content->parent->id)) ?>" title="<?php echo $content->parent->title ?>"> <?php echo $content->parent->title ?> </a> <?php foreach ($content->parent->childs as $child): ?> <a class="list-group-item <?php echo $content->id === $child->id ? 'active':'' ?>" href="<?php echo clink(array('@content', $child->slug, $child->id)) ?>" title="<?php echo $child->title ?>"> <?php echo $child->title ?> </a> <?php endforeach; ?> </div> <?php endif; ?> <?php if (! empty($content->childs)): ?> <div class="list-group"> <a class="list-group-item active" href="<?php echo clink(array('@content', $content->slug, $content->id)) ?>" title="<?php echo $content->title ?>"> <?php echo $content->title ?> </a> <?php foreach ($content->childs as $child): ?> <a class="list-group-item" href="<?php echo clink(array('@content', $child->slug, $child->id)) ?>" title="<?php echo $child->title ?>"> <?php echo $child->title ?> </a> <?php endforeach; ?> </div> <?php endif; ?> </div> <?php endif; ?> </div> </div> </div> </section> </main>
💾 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