-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserTermMeta.php
113 lines (103 loc) · 2.57 KB
/
UserTermMeta.php
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
<?php
declare(strict_types=1);
namespace ArrayAccess\TrayDigita\App\Modules\Users\Entities;
use ArrayAccess\TrayDigita\Database\Entities\Abstracts\AbstractBasedMeta;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\HasLifecycleCallbacks;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\Index;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\Table;
#[Entity]
#[Table(
name: self::TABLE_NAME,
options: [
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'comment' => 'User term metadata',
'primaryKey' => [
'term_id',
'term_group_id'
]
]
)]
#[Index(
name: 'index_name',
columns: ['name']
)]
#[Index(
name: 'relation_user_term_metadata_term_id_user_terms_id',
columns: ['term_id']
)]
#[HasLifecycleCallbacks]
/**
* @property-read int $term_id
* @property-read UserTerm $userTerm
*/
class UserTermMeta extends AbstractBasedMeta
{
public const TABLE_NAME = 'user_term_meta';
#[Id]
#[Column(
name: 'term_id',
type: Types::BIGINT,
length: 20,
updatable: false,
options: [
'unsigned' => true,
'comment' => 'Primary key composite identifier'
]
)]
protected int $term_id;
#[
JoinColumn(
name: 'term_id',
referencedColumnName: 'id',
nullable: false,
onDelete: 'CASCADE',
options: [
'relation_name' => 'relation_user_term_metadata_term_id_user_terms_id',
'onUpdate' => 'CASCADE',
'onDelete' => 'CASCADE'
]
),
ManyToOne(
targetEntity: UserTerm::class,
cascade: [
"persist",
"remove",
// "merge",
"detach"
],
fetch: 'EAGER'
)
]
protected UserTerm $userTerm;
/**
* Allow associations mapping
* @see jsonSerialize()
*
* @var bool
*/
protected bool $entityAllowAssociations = true;
public function getTermId(): int
{
return $this->term_id;
}
public function setTermId(int $term_id): void
{
$this->term_id = $term_id;
}
public function getUserTerm(): UserTerm
{
return $this->userTerm;
}
public function setUserTerm(UserTerm $userTerm): void
{
$this->userTerm = $userTerm;
$this->setTermId($userTerm->getId());
}
}