New design

This commit is contained in:
edsea
2025-08-02 23:39:14 +02:00
parent 0e90e1f409
commit 9634a3ea80
83 changed files with 7539 additions and 2471 deletions

11
rss/php/autoload.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
spl_autoload_register(function ($class){
$class = str_replace('App\\', '', $class);
$class = str_replace('\\', '/', $class);
$file = $_SERVER['DOCUMENT_ROOT'] . '/rss/php/class/'.$class.'.php';
if(file_exists($file)){
require_once($file);
}
});