nswdpc / silverstripe-pruner-userforms
Silverstripe userforms support for nswdpc/silverstripe-pruner
Installs: 1 477
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:silverstripe-vendormodule
Requires
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3
- phpunit/phpunit: ^9.5
Suggests
- dnadesign/silverstripe-elemental-userforms: Forms as elemental blocks
This package is auto-updated.
Last update: 2024-10-26 03:35:35 UTC
README
Userforms extension to nswdpc/silverstripe-pruner
, to remove submitted form records after a configured time period.
Install
composer require nswdpc/silverstripe-pruner-userforms
Using
- Create a
NSWDPC\Pruner\PruneJob
queued job with the following constructor arguments:- days_ago (float, remove records older than this number of days)
- limit (int, limit records in this operation to this number)
- targets (string
SilverStripe\UserForms\Model\Submission\SubmittedForm
) - report_only (1|0, set to 1 to run the job in report only mode, nothing is removed)
- Run the job
Example: report only on the removal of submitted form records older than 28 days at the time the job runs, 500 records per run:
Limits
As SubmittedForm
has a polymorphic has_one parent, the limit parameter specified is used per parent class. If you have specified a limit of 50 and have multiple parent classes for the SubmittedForm model, that limit will be set per parent.
This will be the case if you have dnadesign/silverstripe-elemental-userforms active alongside silverstripe/userforms.
Maintainers
License
Security
If you have found a security issue with this module, please email digital[@]dpc.nsw.gov.au in the first instance, detailing your findings.
Bugtracker
We welcome bug reports, pull requests and feature requests on the Github Issue tracker for this project.
Please review the code of conduct prior to opening a new issue.
Development and contribution
If you would like to make contributions to the module please ensure you raise a pull request and discuss with the module maintainers.
Please review the code of conduct prior to completing a pull request.