Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/geniouskin/wp-content/plugins/wpcore-content-manager/admin/views/ |
Upload File : |
<div class="wrap">
<h1>WPCore Auto Publisher - Loglar</h1>
<!-- Menü Öğeleri -->
<div class="wpcore-admin-menu" style="margin: 20px 0; padding: 15px; background: #f8f9fa; border: 1px solid #dee2e6; border-radius: 8px;">
<h2 style="margin-top: 0; margin-bottom: 15px; color: #495057;">📋 Admin Menüsü</h2>
<div class="wpcore-menu-buttons" style="display: flex; gap: 10px; flex-wrap: wrap;">
<a href="<?php echo admin_url('admin.php?page=wpcore-dashboard'); ?>" class="button button-secondary" style="text-decoration: none;">
🏠 Dashboard
</a>
<a href="<?php echo admin_url('admin.php?page=wpcore-settings'); ?>" class="button button-secondary" style="text-decoration: none;">
⚙️ Ayarlar
</a>
<a href="<?php echo admin_url('admin.php?page=wpcore-content'); ?>" class="button button-secondary" style="text-decoration: none;">
📝 İçerik Yöneticisi
</a>
<a href="<?php echo admin_url('admin.php?page=wpcore-logs'); ?>" class="button button-primary" style="text-decoration: none;">
📋 Loglar
</a>
</div>
<div style="margin-top: 10px; font-size: 12px; color: #6c757d;">
💡 <strong>Hızlı Erişim:</strong> Bu menü öğeleri ile eklentinin tüm özelliklerine kolayca erişebilirsiniz.
</div>
</div>
<div class="wpcore-logs-actions">
<button class="button button-secondary" onclick="wpcoreClearLogs()">Logları Temizle</button>
</div>
<div class="wpcore-logs-list">
<table class="wp-list-table widefat fixed striped">
<thead>
<tr>
<th>Tarih</th>
<th>Tip</th>
<th>Mesaj</th>
<th>Kullanıcı</th>
</tr>
</thead>
<tbody>
<?php foreach ($logs as $log): ?>
<tr>
<td><?php echo esc_html($log['timestamp']); ?></td>
<td>
<span class="log-type log-type-<?php echo esc_attr($log['type']); ?>">
<?php echo esc_html($log['type']); ?>
</span>
</td>
<td><?php echo esc_html($log['message']); ?></td>
<td><?php echo esc_html($log['user_id']); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>