Initial commit

This commit is contained in:
Ivan Petrov
2025-12-24 19:19:01 +03:00
commit a7097c6178
19493 changed files with 94306 additions and 0 deletions

19
playarea/main.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
defined( 'ROOT_DIR' ) || exit;
global $b;
// Playarea
require $b->get_scripts_dir() . "/lowercase.php";
require $b->get_scripts_dir() . "/settings.php";
require $b->get_scripts_dir() . "/pages.php";
require $b->get_scripts_dir() . "/track.php";
require $b->get_scripts_dir() . "/sitemap.php";
// 404 Page
$b->router_set_not_found(function () {
global $b;
$b->template_load("404.php");
});