admin theme manager

This commit is contained in:
2024-09-11 17:38:46 +03:00
parent 69b27d4975
commit 42b28df07d
129 changed files with 16335 additions and 53 deletions

20
kernel/helpers/Debug.php Normal file
View File

@ -0,0 +1,20 @@
<?php
namespace kernel\helpers;
class Debug
{
public static function prn($content)
{
echo '<pre style="background: lightgray; border: 1px solid black; padding: 2px">';
print_r($content);
echo '</pre>';
}
public static function dd($content)
{
echo '<pre style="background: lightgray; border: 1px solid black; padding: 2px">';
print_r($content);
echo '</pre>';
die();
}
}