www_archline_hu/cadline/backend/maintenance/tests/get_xml.php
LÁZÁR Imre AI Agent edb18f07b5 feat(cadline): add common_cadline_libraries + maintenance backend
common_cadline_libraries (CRM hardlock/db/users classes; upstream cadline_web/cadcommonlib), maintenance/ (ARCHLine.XP license backend; upstream cadline_web/maintenance), maintenance2/. Vetted live files (byte-truth); upstream repos in PROVENANCE.md. NOTE: could be git submodules — kept as live files for byte-fidelity.

Signed-off-by: LÁZÁR Imre <imre@illusion.hu>
Assisted-by: claude-code@claude-opus-4-8
2026-07-16 11:34:30 +02:00

11 lines
227 B
PHP

<?php
// TODO: Kivenni majd
header('Access-Control-Allow-Origin: *');
$xmlPathWebdav = '../../webdav/test_logs/' . $_GET['id'] . '.xml';
if (file_exists($xmlPathWebdav)) {
echo file_get_contents($xmlPathWebdav);
}
die();