js files put in place + select menus added for selecting person/thirdparty/... show-hide not working yet

This commit is contained in:
2022-01-19 09:48:39 +01:00
parent 4a5a1440ff
commit 94c9505c05
8 changed files with 116 additions and 16 deletions

View File

@@ -31,7 +31,7 @@ class PersonResourceKind
/**
* @ORM\Column(type="json", length=255)
*/
private array $label;
private array $title;
/**
* @ORM\Column(type="boolean")
@@ -48,14 +48,14 @@ class PersonResourceKind
return $this->isActive;
}
public function getLabel(): ?array
public function getTitle(): ?array
{
return $this->label;
return $this->title;
}
public function setLabel(array $label): self
public function setTitle(array $title): self
{
$this->label = $label;
$this->title = $title;
return $this;
}