Fakeldapuser.php 937 Bytes
<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;
use Cake\Auth\DefaultPasswordHasher;

/**
 * User Entity.
 *
 * @property int $id
 * @property string $sn
 * @property string $givenname
 * @property string $uid
 * @property string $userpassword
 * @property string $mail
 */
class Fakeldapuser 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);
    }
}