mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
92 lines
2.1 KiB
PHP
92 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\MainBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Annotation as Serializer;
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
#[ORM\Entity]
|
|
#[ORM\Table(name: 'chill_main_dashboard_config_item')]
|
|
class DashboardConfigItem
|
|
{
|
|
#[Serializer\Groups(['dashboardConfigItem:read', 'read'])]
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::INTEGER)]
|
|
private ?int $id = null;
|
|
|
|
#[Serializer\Groups(['dashboardConfigItem:read', 'read'])]
|
|
#[Assert\NotNull]
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::STRING)]
|
|
private string $type = '';
|
|
|
|
#[Serializer\Groups(['dashboardConfigItem:read', 'read'])]
|
|
#[Assert\NotNull]
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::STRING)]
|
|
private string $position = '';
|
|
|
|
#[ORM\ManyToOne(targetEntity: User::class)]
|
|
private ?User $user = null;
|
|
|
|
#[Serializer\Groups(['dashboardConfigItem:read'])]
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::JSON, options: ['default' => '[]', 'jsonb' => true])]
|
|
private array $metadata = [];
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getType(): string
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
public function setType(string $type): self
|
|
{
|
|
$this->type = $type;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPosition(): string
|
|
{
|
|
return $this->position;
|
|
}
|
|
|
|
public function setPosition(string $position): void
|
|
{
|
|
$this->position = $position;
|
|
}
|
|
|
|
public function getUser(): User
|
|
{
|
|
return $this->user;
|
|
}
|
|
|
|
public function setUser(User $user): void
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
|
|
public function getMetadata(): array
|
|
{
|
|
return $this->metadata;
|
|
}
|
|
|
|
public function setMetadata(array $metadata): void
|
|
{
|
|
$this->metadata = $metadata;
|
|
}
|
|
}
|