Phase A — HTML removed from PHP files: - RateLimitMiddleware.php: heredoc moved to views/errors/429.php - public/index.php: inline HTML replaced with View::error() - AuthMiddleware.php: <script> redirect replaced with <meta refresh> Phase B — Inline CSS/JS extracted from views: - CSS: landing.css (459 lines), legal.css (shared by terms+privacy) - JS: 17 new files extracted from ~20 view files - main.js (layout sidebar + notifications) - dashboard-chart.js, server-show.js, server-services.js - nginx-manager.js, database-manager.js - terminal.js, team-show.js, team-index.js - server-list.js, server-permissions.js (shared by edit+create) - server-ssl.js, server-processes.js, system-users.js - admin-users.js, audit-log.js, admin-notifications.js, admin-security.js - notifications.js Total: -3264 lines from views, +288 lines in new assets
21 lines
797 B
JavaScript
21 lines
797 B
JavaScript
function markAllRead() {
|
|
const token = document.querySelector('meta[name="api-token"]')?.getAttribute('content') || '';
|
|
const headers = { 'Accept': 'application/json' };
|
|
if (token) headers['Authorization'] = 'Bearer ' + token;
|
|
|
|
fetch('/api/notifications/read-all', { method: 'POST', headers })
|
|
.then(r => r.json())
|
|
.then(d => {
|
|
if (d.success) {
|
|
document.querySelectorAll('.notif-item').forEach(function(el) {
|
|
el.classList.remove('notif-unread');
|
|
el.classList.add('notif-read');
|
|
const dot = el.querySelector('.notif-dot');
|
|
if (dot) dot.remove();
|
|
});
|
|
location.reload();
|
|
}
|
|
})
|
|
.catch(function(){});
|
|
}
|