class-wpml-tm-post-job-entity.php
4.04 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
class WPML_TM_Post_Job_Entity extends WPML_TM_Job_Entity {
/** @var WPML_TM_Job_Element_Entity[]|callable */
private $elements;
/** @var int */
private $translate_job_id;
/** @var string */
private $editor;
/** @var int */
private $editor_job_id;
/** @var null|DateTime */
private $completed_date;
/** @var bool */
private $automatic;
/** @var null|string */
private $review_status = null;
/** @var int */
private $trid;
/** @var string */
private $element_type;
/** @var int */
private $element_id;
/** @var string */
private $element_type_prefix;
/** @var string */
private $job_title;
public function __construct( $id, $type, $tp_id, $batch, $status, $elements ) {
parent::__construct( $id, $type, $tp_id, $batch, $status );
if ( is_callable( $elements ) ) {
$this->elements = $elements;
} elseif ( is_array( $elements ) ) {
foreach ( $elements as $element ) {
if ( $element instanceof WPML_TM_Job_Element_Entity ) {
$this->elements[] = $element;
}
}
}
}
/**
* @return WPML_TM_Job_Element_Entity[]
*/
public function get_elements() {
if ( is_callable( $this->elements ) ) {
return call_user_func( $this->elements, $this );
} elseif ( is_array( $this->elements ) ) {
return $this->elements;
} else {
return array();
}
}
/**
* @return int
*/
public function get_translate_job_id() {
return $this->translate_job_id;
}
/**
* @param int $translate_job_id
*/
public function set_translate_job_id( $translate_job_id ) {
$this->translate_job_id = (int) $translate_job_id;
}
/**
* @return string
*/
public function get_editor() {
return $this->editor;
}
/**
* @param string $editor
*/
public function set_editor( $editor ) {
$this->editor = (string) $editor;
}
/**
* @return int
*/
public function get_editor_job_id() {
return $this->editor_job_id;
}
/**
* @param int $editor_job_id
*/
public function set_editor_job_id( $editor_job_id ) {
$this->editor_job_id = (int) $editor_job_id;
}
/**
* @return bool
*/
public function is_ate_job() {
return 'local' === $this->get_translation_service() && $this->is_ate_editor();
}
/**
* @return bool
*/
public function is_ate_editor() {
return WPML_TM_Editors::ATE === $this->get_editor();
}
/**
* @return DateTime|null
*/
public function get_completed_date() {
return $this->completed_date;
}
/**
* @param DateTime|null $completed_date
*/
public function set_completed_date( DateTime $completed_date = null ) {
$this->completed_date = $completed_date;
}
/**
* @return bool
*/
public function is_automatic() {
return $this->automatic;
}
/**
* @param bool $automatic
*/
public function set_automatic( $automatic ) {
$this->automatic = (bool) $automatic;
}
/**
* @return string|null
*/
public function get_review_status() {
return $this->review_status;
}
/**
* @param string|null $review_status
*/
public function set_review_status( $review_status ) {
$this->review_status = $review_status;
}
/**
* @return int
*/
public function get_trid() {
return $this->trid;
}
/**
* @param int $trid
*/
public function set_trid( $trid ) {
$this->trid = $trid;
}
/**
* @return string
*/
public function get_element_type() {
return $this->element_type;
}
/**
* @param string $element_type
*/
public function set_element_type( $element_type ) {
$this->element_type = $element_type;
}
/**
* @return int
*/
public function get_element_id() {
return $this->element_id;
}
/**
* @param int $element_id
*/
public function set_element_id( $element_id ) {
$this->element_id = $element_id;
}
public function get_element_type_prefix() {
return $this->element_type_prefix;
}
public function set_element_type_prefix( $element_type ) {
$this->element_type_prefix = explode( '_', $element_type )[0];
}
/**
* @return string
*/
public function get_job_title() {
return $this->job_title;
}
/**
* @param string $job_title
*/
public function set_job_title( $job_title ) {
$this->job_title = $job_title;
}
}