1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* TechDivision\Import\Observers\AttributeObserverTrait |
5
|
|
|
* |
6
|
|
|
* NOTICE OF LICENSE |
7
|
|
|
* |
8
|
|
|
* This source file is subject to the Open Software License (OSL 3.0) |
9
|
|
|
* that is available through the world-wide-web at this URL: |
10
|
|
|
* http://opensource.org/licenses/osl-3.0.php |
11
|
|
|
* |
12
|
|
|
* PHP version 5 |
13
|
|
|
* |
14
|
|
|
* @author Tim Wagner <[email protected]> |
15
|
|
|
* @copyright 2016 TechDivision GmbH <[email protected]> |
16
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
17
|
|
|
* @link https://github.com/techdivision/import |
18
|
|
|
* @link http://www.techdivision.com |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
namespace TechDivision\Import\Observers; |
22
|
|
|
|
23
|
|
|
use TechDivision\Import\Utils\LoggerKeys; |
24
|
|
|
use TechDivision\Import\Utils\MemberNames; |
25
|
|
|
use TechDivision\Import\Utils\EntityStatus; |
26
|
|
|
use TechDivision\Import\Utils\StoreViewCodes; |
27
|
|
|
use TechDivision\Import\Utils\BackendTypeKeys; |
28
|
|
|
use TechDivision\Import\Utils\ConfigurationKeys; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Observer that creates/updates the EAV attributes. |
32
|
|
|
* |
33
|
|
|
* @author Tim Wagner <[email protected]> |
34
|
|
|
* @copyright 2016 TechDivision GmbH <[email protected]> |
35
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
36
|
|
|
* @link https://github.com/techdivision/import |
37
|
|
|
* @link http://www.techdivision.com |
38
|
|
|
*/ |
39
|
|
|
trait AttributeObserverTrait |
40
|
|
|
{ |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* The ID of the attribute to create the values for. |
44
|
|
|
* |
45
|
|
|
* @var integer |
46
|
|
|
*/ |
47
|
|
|
protected $attributeId; |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* The attribute code of the attribute to create the values for. |
51
|
|
|
* |
52
|
|
|
* @var string |
53
|
|
|
*/ |
54
|
|
|
protected $attributeCode; |
55
|
|
|
|
56
|
|
|
/** |
57
|
|
|
* The backend type of the attribute to create the values for. |
58
|
|
|
* |
59
|
|
|
* @var string |
60
|
|
|
*/ |
61
|
|
|
protected $backendType; |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* The attribute value to process. |
65
|
|
|
* |
66
|
|
|
* @var mixed |
67
|
|
|
*/ |
68
|
|
|
protected $attributeValue; |
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* The array with the column keys that has to be cleaned up when their values are empty. |
72
|
|
|
* |
73
|
|
|
* @var array |
74
|
|
|
*/ |
75
|
|
|
protected $cleanUpEmptyColumnKeys; |
76
|
|
|
|
77
|
|
|
/** |
78
|
|
|
* The entity's existing attribues. |
79
|
|
|
* |
80
|
|
|
* @var array |
81
|
|
|
*/ |
82
|
|
|
protected $attributes; |
83
|
|
|
|
84
|
|
|
/** |
85
|
|
|
* The attribute code that has to be processed. |
86
|
|
|
* |
87
|
|
|
* @return string The attribute code |
88
|
|
|
*/ |
89
|
1 |
|
public function getAttributeCode() |
90
|
|
|
{ |
91
|
1 |
|
return $this->attributeCode; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* The attribute value that has to be processed. |
96
|
|
|
* |
97
|
|
|
* @return string The attribute value |
98
|
|
|
*/ |
99
|
1 |
|
public function getAttributeValue() |
100
|
|
|
{ |
101
|
1 |
|
return $this->attributeValue; |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
/** |
105
|
|
|
* Remove all the empty values from the row and return the cleared row. |
106
|
|
|
* |
107
|
|
|
* @return array The cleared row |
108
|
|
|
*/ |
109
|
7 |
|
protected function clearRow() |
110
|
|
|
{ |
111
|
|
|
|
112
|
|
|
// query whether or not the column keys has been initialized |
113
|
7 |
|
if ($this->cleanUpEmptyColumnKeys === null) { |
114
|
|
|
// initialize the array with the column keys that has to be cleaned-up |
115
|
7 |
|
$this->cleanUpEmptyColumnKeys = array(); |
116
|
|
|
|
117
|
|
|
// query whether or not column names that has to be cleaned up have been configured |
118
|
7 |
|
if ($this->getSubject()->getConfiguration()->hasParam(ConfigurationKeys::CLEAN_UP_EMPTY_COLUMNS)) { |
|
|
|
|
119
|
|
|
// if yes, load the column names |
120
|
|
|
$cleanUpEmptyColumns = $this->getSubject()->getCleanUpColumns(); |
|
|
|
|
121
|
|
|
|
122
|
|
|
// translate the column names into column keys |
123
|
|
|
foreach ($cleanUpEmptyColumns as $cleanUpEmptyColumn) { |
124
|
|
|
if ($this->hasHeader($cleanUpEmptyColumn)) { |
|
|
|
|
125
|
|
|
$this->cleanUpEmptyColumnKeys[] = $this->getHeader($cleanUpEmptyColumn); |
|
|
|
|
126
|
|
|
} |
127
|
|
|
} |
128
|
|
|
} |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
// remove all the empty values from the row, expected the columns has to be cleaned-up |
132
|
7 |
|
return array_filter( |
133
|
7 |
|
$this->row, |
|
|
|
|
134
|
7 |
|
function ($value, $key) { |
135
|
7 |
|
return ($value !== null && $value !== '') || in_array($key, $this->cleanUpEmptyColumnKeys); |
136
|
7 |
|
}, |
137
|
7 |
|
ARRAY_FILTER_USE_BOTH |
138
|
|
|
); |
139
|
|
|
} |
140
|
|
|
|
141
|
|
|
/** |
142
|
|
|
* Returns the value(s) of the primary key column(s). As the primary key column can |
143
|
|
|
* also consist of two columns, the return value can be an array also. |
144
|
|
|
* |
145
|
|
|
* @return mixed The primary key value(s) |
146
|
|
|
*/ |
147
|
7 |
|
protected function getPrimaryKeyValue() |
148
|
|
|
{ |
149
|
7 |
|
return $this->getValue($this->getPrimaryKeyColumnName()); |
|
|
|
|
150
|
|
|
} |
151
|
|
|
|
152
|
|
|
/** |
153
|
|
|
* Process the observer's business logic. |
154
|
|
|
* |
155
|
|
|
* @return void |
156
|
|
|
*/ |
157
|
7 |
|
protected function process() |
158
|
|
|
{ |
159
|
|
|
|
160
|
|
|
// initialize the store view code |
161
|
7 |
|
$this->prepareStoreViewCode(); |
|
|
|
|
162
|
|
|
|
163
|
|
|
// load the store ID, use the admin store if NO store view code has been set |
164
|
7 |
|
$storeId = $this->getRowStoreId(StoreViewCodes::ADMIN); |
|
|
|
|
165
|
|
|
|
166
|
|
|
// load the entity's existing attributes |
167
|
7 |
|
$this->getAttributesByPrimaryKeyAndStoreId($this->getPrimaryKey(), $storeId); |
168
|
|
|
|
169
|
|
|
// load the store view - if no store view has been set, we assume the admin |
170
|
|
|
// store view, which will contain the default (fallback) attribute values |
171
|
7 |
|
$storeViewCode = $this->getSubject()->getStoreViewCode(StoreViewCodes::ADMIN); |
|
|
|
|
172
|
|
|
|
173
|
|
|
// query whether or not the row has already been processed |
174
|
7 |
|
if ($this->storeViewHasBeenProcessed($pk = $this->getPrimaryKeyValue(), $storeViewCode)) { |
175
|
|
|
// log a message |
176
|
|
|
$this->getSystemLogger()->warning( |
177
|
|
|
$this->appendExceptionSuffix( |
|
|
|
|
178
|
|
|
sprintf( |
179
|
|
|
'Attributes for %s "%s" + store view code "%s" has already been processed', |
180
|
|
|
$this->getPrimaryKeyColumnName(), |
181
|
|
|
$pk, |
182
|
|
|
$storeViewCode |
183
|
|
|
) |
184
|
|
|
) |
185
|
|
|
); |
186
|
|
|
|
187
|
|
|
// return immediately |
188
|
|
|
return; |
189
|
|
|
} |
190
|
|
|
|
191
|
|
|
// load the attributes by the found attribute set and the backend types |
192
|
7 |
|
$attributes = $this->getAttributes(); |
193
|
7 |
|
$backendTypes = $this->getBackendTypes(); |
194
|
|
|
|
195
|
|
|
// load the header keys |
196
|
7 |
|
$headers = array_flip($this->getHeaders()); |
|
|
|
|
197
|
|
|
|
198
|
|
|
// remove all the empty values from the row |
199
|
7 |
|
$row = $this->clearRow(); |
200
|
|
|
|
201
|
|
|
// iterate over the attributes and append them to the row |
202
|
7 |
|
foreach ($row as $key => $attributeValue) { |
203
|
|
|
// query whether or not attribute with the found code exists |
204
|
6 |
|
if (!isset($attributes[$attributeCode = $headers[$key]])) { |
205
|
|
|
// log a message in debug mode |
206
|
1 |
|
if ($this->isDebugMode()) { |
|
|
|
|
207
|
1 |
|
$this->getSystemLogger()->debug( |
208
|
1 |
|
$this->appendExceptionSuffix( |
|
|
|
|
209
|
1 |
|
sprintf( |
210
|
1 |
|
'Can\'t find attribute with attribute code %s', |
211
|
1 |
|
$attributeCode |
212
|
|
|
) |
213
|
|
|
) |
214
|
|
|
); |
215
|
|
|
} |
216
|
|
|
|
217
|
|
|
// stop processing |
218
|
1 |
|
continue; |
219
|
|
|
} else { |
220
|
|
|
// log a message in debug mode |
221
|
5 |
|
if ($this->isDebugMode()) { |
|
|
|
|
222
|
|
|
// log a message in debug mode |
223
|
2 |
|
$this->getSystemLogger()->debug( |
224
|
2 |
|
$this->appendExceptionSuffix( |
|
|
|
|
225
|
2 |
|
sprintf( |
226
|
2 |
|
'Found attribute with attribute code %s', |
227
|
2 |
|
$attributeCode |
228
|
|
|
) |
229
|
|
|
) |
230
|
|
|
); |
231
|
|
|
} |
232
|
|
|
} |
233
|
|
|
|
234
|
|
|
// if yes, load the attribute by its code |
235
|
5 |
|
$attribute = $attributes[$attributeCode]; |
236
|
|
|
|
237
|
|
|
// load the backend type => to find the apropriate entity |
238
|
5 |
|
$backendType = $attribute[MemberNames::BACKEND_TYPE]; |
239
|
5 |
|
if ($backendType === null) { |
240
|
|
|
// log a message in debug mode |
241
|
1 |
|
$this->getSystemLogger()->warning( |
242
|
1 |
|
$this->appendExceptionSuffix( |
|
|
|
|
243
|
1 |
|
sprintf( |
244
|
1 |
|
'Found EMTPY backend type for attribute %s', |
245
|
1 |
|
$attributeCode |
246
|
|
|
) |
247
|
|
|
) |
248
|
|
|
); |
249
|
|
|
// stop processing |
250
|
1 |
|
continue; |
251
|
|
|
} |
252
|
|
|
|
253
|
|
|
// do nothing on static backend type |
254
|
4 |
|
if ($backendType === BackendTypeKeys::BACKEND_TYPE_STATIC) { |
255
|
1 |
|
continue; |
256
|
|
|
} |
257
|
|
|
|
258
|
|
|
// query whether or not we've found a supported backend type |
259
|
3 |
|
if (isset($backendTypes[$backendType])) { |
260
|
|
|
// initialize attribute ID/code and backend type |
261
|
2 |
|
$this->attributeId = $attribute[MemberNames::ATTRIBUTE_ID]; |
262
|
2 |
|
$this->attributeCode = $attributeCode; |
263
|
2 |
|
$this->backendType = $backendType; |
264
|
|
|
|
265
|
|
|
// initialize the persist method for the found backend type |
266
|
2 |
|
list ($persistMethod, , $deleteMethod) = $backendTypes[$backendType]; |
267
|
|
|
|
268
|
|
|
// set the attribute value |
269
|
2 |
|
$this->attributeValue = $attributeValue; |
270
|
|
|
|
271
|
|
|
// prepare/initialize the attribute value |
272
|
2 |
|
$value = $this->initializeAttribute($this->prepareAttributes()); |
|
|
|
|
273
|
|
|
|
274
|
|
|
// query whether or not the entity's value has to be persisted or deleted. if the value is |
275
|
|
|
// an empty string and the status is UPDATE, then the value exists and has to be deleted |
276
|
2 |
|
if ($value[MemberNames::VALUE] === '' && $value[EntityStatus::MEMBER_NAME] === EntityStatus::STATUS_UPDATE) { |
277
|
|
|
$this->$deleteMethod(array(MemberNames::VALUE_ID => $value[MemberNames::VALUE_ID])); |
278
|
2 |
|
} elseif ($value[MemberNames::VALUE] !== '' && $value[MemberNames::VALUE] !== null) { |
279
|
1 |
|
$this->$persistMethod($value); |
280
|
|
|
} else { |
281
|
|
|
// log a debug message, because this should never happen |
282
|
1 |
|
$this->getSubject()->getSystemLogger()->debug(sprintf('Found empty value for attribute "%s"', $attributeCode)); |
|
|
|
|
283
|
|
|
} |
284
|
|
|
|
285
|
|
|
// continue with the next value |
286
|
2 |
|
continue; |
287
|
|
|
} |
288
|
|
|
|
289
|
|
|
// log the debug message |
290
|
1 |
|
$this->getSystemLogger()->debug( |
291
|
1 |
|
$this->getSubject()->appendExceptionSuffix( |
|
|
|
|
292
|
1 |
|
sprintf( |
293
|
1 |
|
'Found invalid backend type %s for attribute %s', |
294
|
1 |
|
$backendType, |
295
|
1 |
|
$attributeCode |
296
|
|
|
) |
297
|
|
|
) |
298
|
|
|
); |
299
|
|
|
} |
300
|
7 |
|
} |
301
|
|
|
|
302
|
|
|
/** |
303
|
|
|
* Prepare the attributes of the entity that has to be persisted. |
304
|
|
|
* |
305
|
|
|
* @return array|null The prepared attributes |
306
|
|
|
*/ |
307
|
2 |
|
protected function prepareAttributes() |
308
|
|
|
{ |
309
|
|
|
|
310
|
|
|
// laod the callbacks for the actual attribute code |
311
|
2 |
|
$callbacks = $this->getCallbacksByType($this->attributeCode); |
312
|
|
|
|
313
|
|
|
// invoke the pre-cast callbacks |
314
|
2 |
|
foreach ($callbacks as $callback) { |
315
|
1 |
|
$this->attributeValue = $callback->handle($this); |
316
|
|
|
} |
317
|
|
|
|
318
|
|
|
// load the ID of the product that has been created recently |
319
|
2 |
|
$lastEntityId = $this->getPrimaryKey(); |
320
|
|
|
|
321
|
|
|
// load the store ID, use the admin store if NO store view code has been set |
322
|
2 |
|
$storeId = $this->getRowStoreId(StoreViewCodes::ADMIN); |
|
|
|
|
323
|
|
|
|
324
|
|
|
// cast the value based on the backend type |
325
|
2 |
|
$castedValue = $this->castValueByBackendType($this->backendType, $this->attributeValue); |
|
|
|
|
326
|
|
|
|
327
|
|
|
// prepare the attribute values |
328
|
2 |
|
return $this->initializeEntity( |
|
|
|
|
329
|
|
|
array( |
330
|
2 |
|
$this->getPrimaryKeyMemberName() => $lastEntityId, |
331
|
2 |
|
MemberNames::ATTRIBUTE_ID => $this->attributeId, |
332
|
2 |
|
MemberNames::STORE_ID => $storeId, |
333
|
2 |
|
MemberNames::VALUE => $castedValue |
334
|
|
|
) |
335
|
|
|
); |
336
|
|
|
} |
337
|
|
|
|
338
|
|
|
/** |
339
|
|
|
* Initialize the category product with the passed attributes and returns an instance. |
340
|
|
|
* |
341
|
|
|
* @param array $attr The category product attributes |
342
|
|
|
* |
343
|
|
|
* @return array The initialized category product |
344
|
|
|
*/ |
345
|
2 |
|
protected function initializeAttribute(array $attr) |
346
|
|
|
{ |
347
|
2 |
|
return $attr; |
348
|
|
|
} |
349
|
|
|
|
350
|
|
|
/** |
351
|
|
|
* Return's the array with callbacks for the passed type. |
352
|
|
|
* |
353
|
|
|
* @param string $type The type of the callbacks to return |
354
|
|
|
* |
355
|
|
|
* @return array The callbacks |
356
|
|
|
*/ |
357
|
2 |
|
protected function getCallbacksByType($type) |
358
|
|
|
{ |
359
|
2 |
|
return $this->getSubject()->getCallbacksByType($type); |
|
|
|
|
360
|
|
|
} |
361
|
|
|
|
362
|
|
|
/** |
363
|
|
|
* Return's mapping for the supported backend types (for the product entity) => persist methods. |
364
|
|
|
* |
365
|
|
|
* @return array The mapping for the supported backend types |
366
|
|
|
*/ |
367
|
7 |
|
protected function getBackendTypes() |
368
|
|
|
{ |
369
|
7 |
|
return $this->getSubject()->getBackendTypes(); |
|
|
|
|
370
|
|
|
} |
371
|
|
|
|
372
|
|
|
/** |
373
|
|
|
* Return's the attributes for the attribute set of the product that has to be created. |
374
|
|
|
* |
375
|
|
|
* @return array The attributes |
376
|
|
|
* @throws \Exception |
377
|
|
|
*/ |
378
|
7 |
|
protected function getAttributes() |
379
|
|
|
{ |
380
|
7 |
|
return $this->getSubject()->getAttributes(); |
|
|
|
|
381
|
|
|
} |
382
|
|
|
|
383
|
|
|
/** |
384
|
|
|
* Intializes the existing attributes for the entity with the passed primary key. |
385
|
|
|
* |
386
|
|
|
* @param string $pk The primary key of the entity to load the attributes for |
387
|
|
|
* @param integer $storeId The ID of the store view to load the attributes for |
388
|
|
|
* |
389
|
|
|
* @return array The entity attributes |
390
|
|
|
*/ |
391
|
|
|
abstract protected function getAttributesByPrimaryKeyAndStoreId($pk, $storeId); |
392
|
|
|
|
393
|
|
|
/** |
394
|
|
|
* Return's the logger with the passed name, by default the system logger. |
395
|
|
|
* |
396
|
|
|
* @param string $name The name of the requested system logger |
397
|
|
|
* |
398
|
|
|
* @return \Psr\Log\LoggerInterface The logger instance |
399
|
|
|
* @throws \Exception Is thrown, if the requested logger is NOT available |
400
|
|
|
*/ |
401
|
|
|
abstract protected function getSystemLogger($name = LoggerKeys::SYSTEM); |
402
|
|
|
|
403
|
|
|
/** |
404
|
|
|
* Return's the PK to create the product => attribute relation. |
405
|
|
|
* |
406
|
|
|
* @return integer The PK to create the relation with |
407
|
|
|
*/ |
408
|
|
|
abstract protected function getPrimaryKey(); |
409
|
|
|
|
410
|
|
|
/** |
411
|
|
|
* Return's the PK column name to create the product => attribute relation. |
412
|
|
|
* |
413
|
|
|
* @return string The PK column name |
414
|
|
|
*/ |
415
|
|
|
abstract protected function getPrimaryKeyMemberName(); |
416
|
|
|
|
417
|
|
|
/** |
418
|
|
|
* Return's the column name that contains the primary key. |
419
|
|
|
* |
420
|
|
|
* @return string the column name that contains the primary key |
421
|
|
|
*/ |
422
|
|
|
abstract protected function getPrimaryKeyColumnName(); |
423
|
|
|
|
424
|
|
|
/** |
425
|
|
|
* Queries whether or not the passed PK and store view code has already been processed. |
426
|
|
|
* |
427
|
|
|
* @param string $pk The PK to check been processed |
428
|
|
|
* @param string $storeViewCode The store view code to check been processed |
429
|
|
|
* |
430
|
|
|
* @return boolean TRUE if the PK and store view code has been processed, else FALSE |
431
|
|
|
*/ |
432
|
|
|
abstract protected function storeViewHasBeenProcessed($pk, $storeViewCode); |
433
|
|
|
|
434
|
|
|
/** |
435
|
|
|
* Persist's the passed varchar attribute. |
436
|
|
|
* |
437
|
|
|
* @param array $attribute The attribute to persist |
438
|
|
|
* |
439
|
|
|
* @return void |
440
|
|
|
*/ |
441
|
|
|
abstract protected function persistVarcharAttribute($attribute); |
442
|
|
|
|
443
|
|
|
/** |
444
|
|
|
* Persist's the passed integer attribute. |
445
|
|
|
* |
446
|
|
|
* @param array $attribute The attribute to persist |
447
|
|
|
* |
448
|
|
|
* @return void |
449
|
|
|
*/ |
450
|
|
|
abstract protected function persistIntAttribute($attribute); |
451
|
|
|
|
452
|
|
|
/** |
453
|
|
|
* Persist's the passed decimal attribute. |
454
|
|
|
* |
455
|
|
|
* @param array $attribute The attribute to persist |
456
|
|
|
* |
457
|
|
|
* @return void |
458
|
|
|
*/ |
459
|
|
|
abstract protected function persistDecimalAttribute($attribute); |
460
|
|
|
|
461
|
|
|
/** |
462
|
|
|
* Persist's the passed datetime attribute. |
463
|
|
|
* |
464
|
|
|
* @param array $attribute The attribute to persist |
465
|
|
|
* |
466
|
|
|
* @return void |
467
|
|
|
*/ |
468
|
|
|
abstract protected function persistDatetimeAttribute($attribute); |
469
|
|
|
|
470
|
|
|
/** |
471
|
|
|
* Persist's the passed text attribute. |
472
|
|
|
* |
473
|
|
|
* @param array $attribute The attribute to persist |
474
|
|
|
* |
475
|
|
|
* @return void |
476
|
|
|
*/ |
477
|
|
|
abstract protected function persistTextAttribute($attribute); |
478
|
|
|
|
479
|
|
|
/** |
480
|
|
|
* Delete's the datetime attribute with the passed value ID. |
481
|
|
|
* |
482
|
|
|
* @param array $row The attributes of the entity to delete |
483
|
|
|
* @param string|null $name The name of the prepared statement that has to be executed |
484
|
|
|
* |
485
|
|
|
* @return void |
486
|
|
|
*/ |
487
|
|
|
abstract protected function deleteDatetimeAttribute(array $row, $name = null); |
488
|
|
|
|
489
|
|
|
/** |
490
|
|
|
* Delete's the decimal attribute with the passed value ID. |
491
|
|
|
* |
492
|
|
|
* @param array $row The attributes of the entity to delete |
493
|
|
|
* @param string|null $name The name of the prepared statement that has to be executed |
494
|
|
|
* |
495
|
|
|
* @return void |
496
|
|
|
*/ |
497
|
|
|
abstract protected function deleteDecimalAttribute(array $row, $name = null); |
498
|
|
|
|
499
|
|
|
/** |
500
|
|
|
* Delete's the integer attribute with the passed value ID. |
501
|
|
|
* |
502
|
|
|
* @param array $row The attributes of the entity to delete |
503
|
|
|
* @param string|null $name The name of the prepared statement that has to be executed |
504
|
|
|
* |
505
|
|
|
* @return void |
506
|
|
|
*/ |
507
|
|
|
abstract protected function deleteIntAttribute(array $row, $name = null); |
508
|
|
|
|
509
|
|
|
/** |
510
|
|
|
* Delete's the text attribute with the passed value ID. |
511
|
|
|
* |
512
|
|
|
* @param array $row The attributes of the entity to delete |
513
|
|
|
* @param string|null $name The name of the prepared statement that has to be executed |
514
|
|
|
* |
515
|
|
|
* @return void |
516
|
|
|
*/ |
517
|
|
|
abstract protected function deleteTextAttribute(array $row, $name = null); |
518
|
|
|
|
519
|
|
|
/** |
520
|
|
|
* Delete's the varchar attribute with the passed value ID. |
521
|
|
|
* |
522
|
|
|
* @param array $row The attributes of the entity to delete |
523
|
|
|
* @param string|null $name The name of the prepared statement that has to be executed |
524
|
|
|
* |
525
|
|
|
* @return void |
526
|
|
|
*/ |
527
|
|
|
abstract protected function deleteVarcharAttribute(array $row, $name = null); |
528
|
|
|
} |
529
|
|
|
|
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.