blob: e3ecd2bea0c868b3583d65b4247beb15ee333f64 (
plain)
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
|
<?php
namespace User;
class Item extends \Item {
const CONFIGURATION = 'USER';
#===============================================================================
# Return absolute user URL
#===============================================================================
public function getURL(): string {
if(\Application::get('USER.SLUG_URLS')) {
return \Application::getUserURL("{$this->Attribute->get('slug')}/");
}
return \Application::getUserURL("{$this->Attribute->get('id')}/");
}
#===============================================================================
# Return unique pseudo GUID
#===============================================================================
public function getGUID(): string {
foreach(['id', 'time_insert'] as $attribute) {
$attributes[] = $this->Attribute->get($attribute);
}
return sha1(implode(NULL, $attributes));
}
}
|