Download the PHP package svenjuergens/disable_beuser without Composer
On this page you can find all versions of the php package svenjuergens/disable_beuser. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download svenjuergens/disable_beuser
More information about svenjuergens/disable_beuser
Files in svenjuergens/disable_beuser
Package disable_beuser
Short Description Scheduler task to disable inactive User
License GPL-2.0-or-later
Homepage https://github.com/SvenJuergens/disable_beuser
Informations about the package disable_beuser
TYPO3 Extension Disable BeUser Task
Thanks for the support
First a thank you for supporting the further development of this extension to Darmstadt University of Applied Sciences
And Tim Horstmann, who created the first Event with a pull request
What does it do?
This extension integrate a scheduler task to disable backend user after a configurable amount of time.
Installation
Simply install the extension with Extension Manager or composer
composer require svenjuergens/disable_beuser
Configuration
After installation, you have the possibility to exclude single user from the scheduler task.
Optional: You can set an individual HTML E-Mail Template in ExtensionManager Configuration
Task Configuration
Input field: "Time of Inactivity to disable Beuser"
Here you have to set a time span e.g. "1 months". You have to use a correkt (PHP) Date/Time Format.
valid examples are:
- 1 day
- 1 week
- 1 month
- 1 year
- 10 days
- 10 weeks
- 10 months
- 10 years
invalid examples are:
- ein Tag
- 1 Woche
- one months
Background: The scheduler task create a Datetime Object and subtract the time span from "now".
Input field: "Notification Email (optional) "
If you set an email address you get the date and a list with disabled user from the task. (Separate Mails with ";" )
Input field: "TestRunner (optional) "
with this field checked, you only make a test run and no user status where changed
Events (since 4.0.0)
There is now an event (AfterBeUserDisabledEvent) after the be_user accounts have been deactivated. Many thanks to Tim Horstmann, who created the feature with a pull request.