Crazy JS + bibliography routes (incomplete)

This commit is contained in:
2024-10-31 18:56:29 +01:00
parent 6c47dc8a1e
commit f8e470b096
5 changed files with 121 additions and 28 deletions

View File

@@ -36,10 +36,10 @@ class Bibliography
#[ORM\Column(name: 'note_bib', type: Types::TEXT)]
private ?string $notes = null;
#[ORM\Column(length: 100)]
#[ORM\Column(length: 100, name: 'editor')]
private ?string $editor = null;
#[ORM\Column(length: 100)]
#[ORM\Column(length: 100, name: 'creator')]
private ?string $creator = null;
public function getId(): ?int
@@ -96,6 +96,18 @@ class Bibliography
return $this;
}
public function getCreator(): ?string
{
return $this->creator;
}
public function setCreator(string $creator): static
{
$this->creator = $creator;
return $this;
}
public function getCitation(): ?string
{
return $this->citation;