user displayname

This commit is contained in:
Roman 2023-01-11 18:47:12 +01:00
parent 05fd209204
commit 777fa8ffad
2 changed files with 5 additions and 1 deletions

@ -12,7 +12,7 @@ class MultipleReference {
private string $thisProperty;
private string $relProperty;
public function __construct(string $className, string $thisProperty, string $relProperty) {
public function __construct(string $className, string $thisProperty, string $relProperty = "id") {
$this->className = $className;
$this->thisProperty = $thisProperty;
$this->relProperty = $relProperty;

@ -137,4 +137,8 @@ class User extends DatabaseEntity {
return false;
}
}
public function getDisplayName(): string {
return !empty($this->fullName) ? $this->fullName : $this->name;
}
}