100 lines
2.4 KiB
PHP
Executable File
100 lines
2.4 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\PointBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Mautic\ApiBundle\Serializer\Driver\ApiMetadataDriver;
|
|
use Mautic\CoreBundle\Doctrine\Mapping\ClassMetadataBuilder;
|
|
use Mautic\CoreBundle\Entity\FormEntity;
|
|
use Mautic\CoreBundle\Entity\UuidInterface;
|
|
use Mautic\CoreBundle\Entity\UuidTrait;
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
use Symfony\Component\Validator\Mapping\ClassMetadata;
|
|
|
|
class Group extends FormEntity implements UuidInterface
|
|
{
|
|
use UuidTrait;
|
|
|
|
public const TABLE_NAME = 'point_groups';
|
|
public const ENTITY_NAME = 'point_group';
|
|
|
|
private ?int $id = null;
|
|
|
|
private ?string $name = '';
|
|
|
|
private ?string $description = '';
|
|
|
|
/**
|
|
* @param ORM\ClassMetadata<Group> $metadata
|
|
*/
|
|
public static function loadMetadata(ORM\ClassMetadata $metadata): void
|
|
{
|
|
$builder = new ClassMetadataBuilder($metadata);
|
|
|
|
$builder->setTable(self::TABLE_NAME)
|
|
->setCustomRepositoryClass(GroupRepository::class);
|
|
|
|
static::addUuidField($builder);
|
|
|
|
$builder->addIdColumns();
|
|
}
|
|
|
|
public static function loadValidatorMetadata(ClassMetadata $metadata): void
|
|
{
|
|
$metadata->addPropertyConstraint('name', new Assert\NotBlank([
|
|
'message' => 'mautic.core.name.required',
|
|
]));
|
|
}
|
|
|
|
public static function loadApiMetadata(ApiMetadataDriver $metadata): void
|
|
{
|
|
$metadata->setGroupPrefix('pointGroup')
|
|
->addListProperties(
|
|
[
|
|
'id',
|
|
'name',
|
|
'description',
|
|
]
|
|
)
|
|
->addProperties(
|
|
[
|
|
'id',
|
|
'name',
|
|
'description',
|
|
]
|
|
)
|
|
->build();
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function setDescription(?string $description): self
|
|
{
|
|
$this->isChanged('description', $description);
|
|
$this->description = $description;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getDescription(): ?string
|
|
{
|
|
return $this->description;
|
|
}
|
|
|
|
public function setName(?string $name): self
|
|
{
|
|
$this->isChanged('name', $name);
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getName(): ?string
|
|
{
|
|
return $this->name;
|
|
}
|
|
}
|