Added an simple admin page for users.

This commit is contained in:
Jan Böhmer 2019-04-28 14:18:11 +02:00
parent 0826f5e6aa
commit 8a4d665d2a
12 changed files with 276 additions and 30 deletions

View file

@ -141,4 +141,9 @@ abstract class NamedDBElement extends DBElement
$this->addedDate = new \DateTime('now');
}
}
public function __toString()
{
return $this->getName();
}
}