Edit page working

This commit is contained in:
2025-08-12 23:08:20 -07:00
parent 4aebef12c8
commit 2f76c1ae35
15 changed files with 272 additions and 7 deletions

View File

@@ -30,6 +30,10 @@ class MessageHandler {
$this->addMessage('error', $message);
}
public function notice($message){
$this->addMessage('notice', $message);
}
// Get all messages of a specific type
public function getMessages($type) {
return $this->messages[$type] ?? [];