src/Entity/WorkoutTemplate.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\WorkoutTemplateRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassWorkoutTemplateRepository::class)]
  7. #[ORM\HasLifecycleCallbacks]
  8. class WorkoutTemplate
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $name null;
  16.     #[ORM\Column(typeTypes::TEXT)]
  17.     private ?string $description null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?array $exercises null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $versionHash null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?int $calories null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $image null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $targetArea null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $level null;
  30.     #[ORM\Column(type"json")]
  31.     private array $equipment = [];
  32.     #[ORM\Column(nullabletrue)]
  33.     private ?int $moduleType null;
  34.     public function __construct()
  35.     {
  36.     }
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getName(): ?string
  42.     {
  43.         return $this->name;
  44.     }
  45.     public function setName(string $name): static
  46.     {
  47.         $this->name $name;
  48.         return $this;
  49.     }
  50.     public function getDescription(): ?string
  51.     {
  52.         return $this->description;
  53.     }
  54.     public function setDescription(string $description): static
  55.     {
  56.         $this->description $description;
  57.         return $this;
  58.     }
  59.     public function getExercises()
  60.     {
  61.         return json_encode($this->exercises);
  62.     }
  63.     public function setExercises($exercises): static
  64.     {
  65.         $this->exercises json_decode(json_encode($exercises), true);
  66.         return $this;
  67.     }
  68.     public function __toString(): string
  69.     {
  70.         return $this->getName() . ' (' $this->getId() . ')';
  71.     }
  72.     public function getVersionHash(): ?string
  73.     {
  74.         return $this->versionHash;
  75.     }
  76.     public function setVersionHash(?string $versionHash): static
  77.     {
  78.         $this->versionHash $versionHash;
  79.         return $this;
  80.     }
  81.     #[ORM\PrePersist]
  82.     #[ORM\PreUpdate]
  83.     public function updateVersionHash(): void
  84.     {
  85.         $data $this->serializePropertiesForHash();
  86.         $this->versionHash md5($data);
  87.     }
  88.     private function serializePropertiesForHash(): string
  89.     {
  90.         return serialize([
  91.             $this->name,
  92.             $this->description,
  93.             $this->exercises
  94.         ]);
  95.     }
  96.     public function getCalories(): ?int
  97.     {
  98.         return $this->calories;
  99.     }
  100.     public function setCalories(?int $calories): static
  101.     {
  102.         $this->calories $calories;
  103.         return $this;
  104.     }
  105.     public function getImage(): ?string
  106.     {
  107.         return $this->image;
  108.     }
  109.     public function setImage(?string $image): static
  110.     {
  111.         $this->image $image;
  112.         return $this;
  113.     }
  114.     public function getTargetArea(): ?string
  115.     {
  116.         return $this->targetArea;
  117.     }
  118.     public function setTargetArea(?string $targetArea): static
  119.     {
  120.         $this->targetArea $targetArea;
  121.         return $this;
  122.     }
  123.     public function getLevel(): ?string
  124.     {
  125.         return $this->level;
  126.     }
  127.     public function setLevel(?string $level): static
  128.     {
  129.         $this->level $level;
  130.         return $this;
  131.     }
  132.     public function getEquipment(): array
  133.     {
  134.         return $this->equipment;
  135.     }
  136.     public function setEquipment(array $equipment): static
  137.     {
  138.         $this->equipment $equipment;
  139.         return $this;
  140.     }
  141.     public function getModuleType(): ?int
  142.     {
  143.         return $this->moduleType;
  144.     }
  145.     public function setModuleType(?int $moduleType): static
  146.     {
  147.         $this->moduleType $moduleType;
  148.         return $this;
  149.     }
  150. }