tags working

This commit is contained in:
2025-12-06 01:09:39 -08:00
parent 208534b5fb
commit 08b8009dec
3 changed files with 101 additions and 31 deletions

18
docs/Dev-Fake_autoload.md Normal file
View File

@@ -0,0 +1,18 @@
# Fake autoload for dev
put this in index.php
```
// --- Dev-only autoloader for manually cloned vendor copy ---
spl_autoload_register(function ($class) {
if (str_starts_with($class, 'Novaconium\\')) {
$baseDir = BASEPATH . '/vendor/4lt/novaconium/src/';
$relativeClass = substr($class, strlen('Novaconium\\'));
$file = $baseDir . str_replace('\\', '/', $relativeClass) . '.php';
if (file_exists($file)) {
require_once $file;
}
}
});
```