- manga import
- read from cbz
- save cbz from scrapping
- menu interactions
This commit is contained in:
Jérémy Guillot
2024-06-27 11:28:45 +02:00
parent d52b724df5
commit 115e4336ab
28 changed files with 1239 additions and 302 deletions

View File

@@ -40,6 +40,9 @@ class Chapter
#[ORM\Column(length: 255, nullable: true)]
private ?string $externalId = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $cbzPath = null;
public function __construct()
{
$this->pagesLink = new ArrayCollection();
@@ -177,4 +180,16 @@ class Chapter
return $this;
}
public function getCbzPath(): ?string
{
return $this->cbzPath;
}
public function setCbzPath(?string $cbzPath): static
{
$this->cbzPath = $cbzPath;
return $this;
}
}