Almost Finished the inbox messages adminpage. Now the only thing missing is the creation of new messages and the mailer.

This commit is contained in:
Vari
2024-07-02 23:28:19 +02:00
parent 16e1ab191d
commit b975170b55
26 changed files with 1219 additions and 195 deletions

View File

@@ -19,7 +19,7 @@ abstract class AdminToolController extends Controller
public function __construct()
{
View::share('title', static::$name);
$this->overrideTitle(static::$name);
}
/**
@@ -54,4 +54,8 @@ final public static function getNeededPermission(): string
{
return static::$neededPermission->value;
}
final protected function overrideTitle(string $title): void {
View::share('title', $title);
}
}