index.php

Code Hygiene Score: 100

Keine Issues gefunden.

Code

<?php ob_start(); ?>

<nav class="breadcrumb">
    <a href="/">Home</a> &raquo; <a href="/explorer">Explorer</a> &raquo; <a href="/system-explorer">System Explorer</a> &raquo; Dokumente
</nav>

<h1>Dokumente</h1>
<p>Hauptbereiche der Server-Dokumentation (depth=0).</p>

<table data-sortable>
    <thead>
        <tr>
            <th data-sort="title">Titel</th>
            <th data-sort="path">Pfad</th>
            <th data-sort="seiten">Seiten</th>
            <th data-sort="chunks">Chunks</th>
            <th data-sort="tokens">Tokens</th>
            <th>Aktionen</th>
        </tr>
    </thead>
    <tbody>
        <?php foreach ($dokumente as $d): ?>
        <tr>
            <td><a href="/system-explorer/dokumente/<?= $d['id'] ?>"><?= htmlspecialchars($d['title']) ?></a></td>
            <td><code><?= htmlspecialchars($d['path']) ?></code></td>
            <td><?= $d['seiten_count'] ?></td>
            <td><?= number_format($d['total_chunks']) ?></td>
            <td><?= number_format($d['total_tokens']) ?></td>
            <td>
                <a href="/system-explorer/dokumente/<?= $d['id'] ?>" class="btn btn--small btn--primary">Details</a>
                <a href="/docs/<?= htmlspecialchars($d['path']) ?>" class="btn btn--small">Docs</a>
            </td>
        </tr>
        <?php endforeach; ?>
    </tbody>
</table>

<p class="links-bar">
    <a href="/system-explorer">Zurück zum Explorer</a>
</p>

<?php $content = ob_get_clean(); ?>
<?php require VIEW_PATH . '/layout.php'; ?>
← Übersicht