mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 07:03:49 +00:00
js files put in place + select menus added for selecting person/thirdparty/... show-hide not working yet
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user