{
"event": "PreToolUse",
"tool_name": "Read",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/View\/semantic-explorer\/ontologie.php"
}
}
{
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/View\/semantic-explorer\/ontologie.php",
"content": "<?php ob_start(); ?>\n\n<nav class=\"breadcrumb\">\n <a href=\"\/\">Home<\/a> » <a href=\"\/explorer\">Explorer<\/a> » <a href=\"\/semantic-explorer\">Semantic Explorer<\/a> » Ontologie\n<\/nav>\n\n<h1>Ontologie<\/h1>\n<p>Konzept-Klassen und deren Eigenschaften.<\/p>\n\n<div class=\"stats-grid\">\n <div class=\"stat-card stat-card--primary\">\n <span class=\"stat-card__value\"><?= $stats['total_classes'] ?? 0 ?><\/span>\n <span class=\"stat-card__label\">Klassen<\/span>\n <\/div>\n <div class=\"stat-card\">\n <span class=\"stat-card__value\"><?= $stats['root_classes'] ?? 0 ?><\/span>\n <span class=\"stat-card__label\">Hauptklassen<\/span>\n <\/div>\n <div class=\"stat-card stat-card--success\">\n <span class=\"stat-card__value\"><?= $stats['classified_entities'] ?? 0 ?><\/span>\n <span class=\"stat-card__label\">Klassifizierte Entitaeten<\/span>\n <\/div>\n<\/div>\n\n<?php if (!empty($classes)): ?>\n<div class=\"filters\">\n <input type=\"search\" id=\"ontology-search\" class=\"form-input\" placeholder=\"Durchsuchen...\">\n<\/div>\n\n<table id=\"ontology-table\" data-sortable>\n <thead>\n <tr>\n <th data-sort=\"name\">Klasse<\/th>\n <th data-sort=\"description\">Beschreibung<\/th>\n <th data-sort=\"entity_count\">Entitaeten<\/th>\n <th data-sort=\"subclass_count\">Unterklassen<\/th>\n <th>Eigenschaften<\/th>\n <\/tr>\n <\/thead>\n <tbody>\n <?php foreach ($classes as $c): ?>\n <tr>\n <td><strong><?= htmlspecialchars($c['name']) ?><\/strong><\/td>\n <td><?= htmlspecialchars(substr($c['description'] ?? '', 0, 80)) ?><\/td>\n <td><?= $c['entity_count'] ?><\/td>\n <td><?= $c['subclass_count'] ?><\/td>\n <td>\n <?php if (!empty($c['properties_decoded'])): ?>\n <code><?= htmlspecialchars(implode(', ', array_keys($c['properties_decoded']))) ?><\/code>\n <?php else: ?>\n -\n <?php endif; ?>\n <\/td>\n <\/tr>\n <?php endforeach; ?>\n <\/tbody>\n<\/table>\n<?php else: ?>\n<p class=\"empty-state\">Keine Ontologie-Klassen gefunden. Fuehren Sie die semantische Analyse aus.<\/p>\n<?php endif; ?>\n\n<p class=\"links-bar\">\n <a href=\"\/semantic-explorer\">Zurueck zum Explorer<\/a> |\n <a href=\"\/semantic-explorer\/taxonomie\">Taxonomie<\/a> |\n <a href=\"\/semantic-explorer\/entitaeten\">Entitaeten<\/a>\n<\/p>\n\n<script type=\"module\">\nimport { init } from '\/js\/components\/data-table.js';\n\nconst dataTable = init({\n clock: { now_epoch_ms_utc: () => Date.now() },\n logger: console,\n ui: {\n showMessage: (msg) => { console.log(msg.type + ': ' + msg.text); },\n disableFeature: (key) => { console.warn('Feature disabled: ' + key); },\n offerRetry: () => Promise.resolve(false)\n },\n runId: crypto.randomUUID()\n});\n\ndataTable.create('ontology-table', {\n searchInput: 'ontology-search',\n pageSize: 20\n});\n<\/script>\n\n<?php $content = ob_get_clean(); ?>\n<?php require VIEW_PATH . '\/layout.php'; ?>\n",
"numLines": 90,
"startLine": 1,
"totalLines": 90
}
}
}