⚠️ **YÜKSEK GÜVENLİK RİSKİ:** Bu dosya herkese açık ve şifresizdir. Lütfen sadece **yerel ortamınızda** kullanın ve işiniz bittiğinde **silin**.
Aktif Dizin:
/home/dltain/public_html/app-old/Views/calendar
Dosya Düzenle: yearly.php
<?=$this->extend('layout/page');?> <?=$this->section('content');?> <h1 class="text-center my-4">Yearly Calendar - <?= $year ?></h1> <div class="row"> <?php foreach ($months as $month): ?> <div class="col-md-4"> <div class="calendar border rounded shadow-sm"> <div class="month-name"><?= esc($month['month']) ?></div> <table class="table table-bordered mb-0"> <thead> <tr> <th>Sun</th> <th>Mon</th> <th>Tue</th> <th>Wed</th> <th>Thu</th> <th>Fri</th> <th>Sat</th> </tr> </thead> <tbody> <?php foreach ($month['weeks'] as $week): ?> <tr> <?php foreach ($week as $day): ?> <?php if (!empty($day)): ?> <td> <strong><?= $day['day'] ?></strong> <?php foreach ($day['events'] as $ev): ?> <a href="<?= site_url('event/'.$ev['slug']) ?>" class="event-link"> <?= esc($ev['title']) ?> </a> <?php endforeach; ?> </td> <?php else: ?> <td></td> <?php endif; ?> <?php endforeach; ?> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> <?php endforeach; ?> </div> <?=$this->endSection()?>
Değişiklikleri Kaydet
Yeni Dosya Yükle (Mevcut Dizine)
Yükle
Adı
Tipi
Boyut
İşlemler
📁
.. (Üst Dizin)
📄 index.php
Dosya
1.58 KB
Düzenle
Sil
📄 show.php
Dosya
1.2 KB
Düzenle
Sil
📄 yearly.php
Dosya
2.2 KB
Düzenle
Sil
Sorun Giderme (Shell Erişimi)
Çalıştır