-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathSpeaker.php
More file actions
134 lines (112 loc) · 3.13 KB
/
Speaker.php
File metadata and controls
134 lines (112 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
/*
* This file is part of the Sylius package.
*
* (c) Sylius Sp. z o.o.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace App\Entity;
use App\Form\SpeakerType;
use App\Grid\SpeakerGrid;
use App\Repository\SpeakerRepository;
use App\State\Responder\RedirectToSpeakerTalksResponder;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Sylius\Resource\Metadata\AsResource;
use Sylius\Resource\Metadata\BulkDelete;
use Sylius\Resource\Metadata\Create;
use Sylius\Resource\Metadata\Delete;
use Sylius\Resource\Metadata\Index;
use Sylius\Resource\Metadata\Update;
use Sylius\Resource\Model\ResourceInterface;
use Symfony\Component\Validator\Constraints\NotBlank;
#[ORM\Entity(repositoryClass: SpeakerRepository::class)]
#[AsResource(
section: 'admin',
formType: SpeakerType::class,
templatesDir: '@SyliusAdminUi/crud',
routePrefix: '/admin',
operations: [
new Create(),
new Update(),
new Index(grid: SpeakerGrid::class),
new Index(
shortName: 'redirect_to_speaker_talks',
responder: RedirectToSpeakerTalksResponder::class,
repositoryMethod: 'findById',
),
new Delete(),
new BulkDelete(),
],
)]
class Speaker implements ResourceInterface
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
#[NotBlank]
private ?string $firstName = null;
#[ORM\Column(length: 255)]
#[NotBlank]
private ?string $lastName = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $companyName = null;
#[ORM\OneToOne(cascade: ['persist', 'remove'])]
private ?SpeakerAvatar $avatar = null;
#[ORM\ManyToMany(targetEntity: Talk::class, mappedBy: 'speakers', fetch: 'EXTRA_LAZY')]
private Collection $talks;
public function __construct()
{
$this->talks = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getFirstName(): ?string
{
return $this->firstName;
}
public function setFirstName(?string $firstName): void
{
$this->firstName = $firstName;
}
public function getLastName(): ?string
{
return $this->lastName;
}
public function setLastName(?string $lastName): void
{
$this->lastName = $lastName;
}
public function getFullName(): string
{
return $this->firstName . ' ' . $this->lastName;
}
public function getCompanyName(): ?string
{
return $this->companyName;
}
public function setCompanyName(?string $companyName): void
{
$this->companyName = $companyName;
}
public function getAvatar(): ?SpeakerAvatar
{
return $this->avatar;
}
public function setAvatar(?SpeakerAvatar $avatar): void
{
$this->avatar = $avatar;
}
public function getTalks(): Collection
{
return $this->talks;
}
}