User.php
1.31 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
<?php
namespace App\Model\Entity;
use Cake\ORM\Entity;
use Cake\Auth\DefaultPasswordHasher;
/**
* User Entity.
*
* @property int $id
* @property string $nom
* @property string $username
* @property string $password
* @property string $email
* @property string $role
* @property int $groupes_metier_id
* @property int $groupe_thematique_id
* @property int $sur_categorie_id
* @property int $groupes_metier_id2
* @property int $groupe_thematique_id2
* @property int $sur_categorie_id2
* @property \App\Model\Entity\GroupesMetier $groupes_metier
* @property \App\Model\Entity\GroupesThematique $groupe_thematique
* @property \App\Model\Entity\SurCategory $sur_categorie
*/
class User extends Entity
{
/**
* Fields that can be mass assigned using newEntity() or patchEntity().
*
* Note that when '*' is set to true, this allows all unspecified fields to
* be mass assigned. For security purposes, it is advised to set '*' to false
* (or remove it), and explicitly make individual fields accessible as needed.
*
* @var array
*/
protected $_accessible = [
'*' => true,
'id' => false,
];
//Fonction de hachage de mot de passe
protected function _setPassword($password)
{
return (new DefaultPasswordHasher)->hash($password);
}
}