deblan.io-murph/src/Entity/StlMesh.php
2022-11-19 20:42:30 +01:00

111 lines
2.1 KiB
PHP

<?php
namespace App\Entity;
use App\Repository\StlMeshRepository;
use Doctrine\ORM\Mapping as ORM;
use App\Core\Entity\EntityInterface;
#[ORM\Entity(repositoryClass: StlMeshRepository::class)]
class StlMesh implements EntityInterface
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'integer', nullable: true)]
private $sortOrder;
#[ORM\Column(type: 'string', length: 255)]
private $label;
#[ORM\Column(type: 'text', nullable: true)]
private $description;
#[ORM\Column(type: 'array', nullable: true)]
private $files = [];
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $preview;
public function getId(): ?int
{
return $this->id;
}
public function getSortOrder(): ?int
{
return $this->sortOrder;
}
public function setSortOrder(?int $sortOrder): self
{
$this->sortOrder = $sortOrder;
return $this;
}
public function getLabel(): ?string
{
return $this->label;
}
public function setLabel(string $label): self
{
$this->label = $label;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
public function getPreview(): ?string
{
return $this->preview;
}
public function setPreview(?string $preview): self
{
$this->preview = $preview;
return $this;
}
public function getFiles(): ?array
{
$this->files = (array) $this->files;
usort($this->files, function($a, $b) {
if ($a['position'] > $b['position']) {
return 1;
}
if ($a['position'] < $b['position']) {
return -1;
}
return 0;
});
return $this->files;
}
public function setFiles(?array $files): self
{
$this->files = $files;
return $this;
}
}