Added a basic dialog for editing/creating attachmentType elements.

This commit is contained in:
Jan Böhmer 2019-03-28 19:24:34 +01:00
parent 4652339879
commit 3e7150735d
12 changed files with 568 additions and 146 deletions

View file

@ -50,9 +50,11 @@ abstract class DBElement
* Get the ID. The ID can be zero, or even negative (for virtual elements). If an elemenent is virtual, can be
* checked with isVirtualElement().
*
* @return int the ID of this element
* Returns null, if the element is not saved to the DB yet.
*
* @return int|null the ID of this element
*/
final public function getID(): int
final public function getID(): ?int
{
return (int) $this->id;
}