Anonymize customer with the GDPR section in the admin customer show.
Export customer data with the GDPR section in the admin customer show.
Anonymize any entity with command for example :
php bin/console synolia:gdpr:anonymize --entity='Sylius\Component\Core\Model\Customer' --id=1
Use --help to get more informations
Version | |
---|---|
PHP | ^8.0 |
Sylius | ^1.10 |
Add the bundle and dependencies in your composer.json :
composer require synolia/sylius-gdpr-plugin --no-scripts
Import required config in your config/packages/_sylius.yaml
file:
imports:
- { resource: "@SynoliaSyliusGDPRPlugin/Resources/config/app/config.yaml" }
Import routing in your config/routes.yaml
file:
synolia_gdpr:
resource: "@SynoliaSyliusGDPRPlugin/Resources/config/routes.yaml"
Process translations
php bin/console translation:extract en SynoliaSyliusGDPRPlugin --dump-messages
php bin/console translation:extract fr SynoliaSyliusGDPRPlugin --dump-messages
Clear cache
php bin/console cache:clear
synolia_sylius_gdpr:
disable_default_mappings: false # False by default
anonymization:
mappings:
paths:
- # Your\Paths\To\Mappings\Directory
Example of configuration
Sylius\Component\Core\Model\Address: # Your class path
properties:
firstName:
faker: text # let's see => https://fakerphp.github.io/formatters/
args: [20] # The associated faker arguments
prefix: 'anonymized-'
lastName:
value: 'Fake lastName'
prefix: 'anonymized-'
value
can be null, an array, an int, a string and an expression language
Example of configuration with dynamic value
Sylius\Component\Core\Model\Customer:
properties:
firstName:
value: '@="some-arbitrary-text..." ~ object.getId() ~ "...more-arbitrary-text"'
your expression language must starts with
@=
to be evaluated properlyvariable
object
is the current entity your are dealing with (eg. in that caseSylius\Component\Core\Model\Customer
)
There's two steps to add your custom form into the page:
Override the controller service by setting the link of your FormType in the $formsType variable
Synolia\SyliusGDPRPlugin\Controller\AdvancedActionsController:
arguments:
$formsType:
- 'Synolia\SyliusGDPRPlugin\Form\Type\Actions\AnonymizeCustomerNotLoggedSinceType'
tags: ['controller.service_arguments']
Then create your form processor by implementing Synolia\SyliusGDPRPlugin\Processor\AnonymizerProcessor\AdvancedActionsFormDataProcessorInterface
There a form processor example
See How to contribute.
This library is under the EUPL-1.2 license.
Developed by Synolia.