PHP code example of dialect / laravel-gdpr-compliance
1. Go to this page and download the library: Download dialect/laravel-gdpr-compliance library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dialect / laravel-gdpr-compliance example snippets
useDialect\Gdpr\Portable;
classUserextendsModel{
usePortable;
/**
* Get the GDPR compliant data portability array for the model.
*
* @return array
*/publicfunctiontoPortableArray(){
$array = $this->toArray();
// Customize array...return $array;
}
}
useDialect\Gdpr\Portable;
classUserextendsModel{
usePortable;
/**
* The relations to
useDialect\Gdpr\Portable;
classUserextendsModel{
usePortable;
/**
* The attributes that should be hidden for the downloadable data.
*
* @var array
*/protected $gdprHidden = ['password'];
}
useDialect\Gdpr\Portable;
classUserextendsMoeld{
usePortable;
/**
* The attributes that should be visible in the downloadable data.
*
* @var array
*/protected $gdprVisible = ['name', 'email'];
}
useDialect\Gdpr\EncryptsAttributes;
classUserextendsModel{
useEncryptsAttributes;
/**
* The attributes that should be encrypted and decrypted on the fly.
*
* @var array
*/protected $encrypted = ['ssnumber'];
}