79 lines
1.6 KiB
PHP
79 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use ApiPlatform\Metadata\ApiResource;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Attribute\Groups;
|
|
|
|
#[ApiResource(
|
|
normalizationContext: ['groups' => ['site:read']],
|
|
paginationEnabled: false,
|
|
security: "is_granted('ROLE_ADMIN')"
|
|
)]
|
|
#[ORM\Entity]
|
|
#[ORM\Table(name: 'sites')]
|
|
class Site
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column(type: 'integer')]
|
|
#[Groups(['site:read', 'employee:read'])]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column(type: 'string', length: 150)]
|
|
#[Groups(['site:read', 'employee:read'])]
|
|
private string $name = '';
|
|
|
|
#[ORM\Column(type: 'string', length: 20)]
|
|
#[Groups(['site:read', 'employee:read'])]
|
|
private string $color = '';
|
|
|
|
#[ORM\Column(type: 'integer', options: ['default' => 0])]
|
|
#[Groups(['site:read'])]
|
|
private int $displayOrder = 0;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getName(): string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName(string $name): self
|
|
{
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getColor(): string
|
|
{
|
|
return $this->color;
|
|
}
|
|
|
|
public function setColor(string $color): self
|
|
{
|
|
$this->color = $color;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getDisplayOrder(): int
|
|
{
|
|
return $this->displayOrder;
|
|
}
|
|
|
|
public function setDisplayOrder(int $displayOrder): self
|
|
{
|
|
$this->displayOrder = $displayOrder;
|
|
|
|
return $this;
|
|
}
|
|
}
|