38751-vm/app/Services/ThemeService.php
Flatlogic Bot 4f61082b27 Aslam vbru
2026-02-24 22:45:41 +00:00

10 lines
148 B
PHP

<?php
namespace App\Services;
class ThemeService {
public static function getCurrent() {
return $_COOKIE['theme'] ?? 'light';
}
}