blob: 8b1c3ed182ddc7f637a5cb046f2120365a8dbc78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace User;
class Item extends \Item {
const CONFIGURATION = 'USER';
#===============================================================================
# Return unique pseudo GUID
#===============================================================================
public function getGUID(): string {
foreach(['id', 'time_insert'] as $attribute) {
$attributes[] = $this->Attribute->get($attribute);
}
return sha1(implode(NULL, $attributes));
}
}
|