svenjuergens/disable_beuser

Scheduler task to disable inactive User

Installs: 22 501

Dependents: 1

Suggesters: 0

Security: 0

Stars: 5

Watchers: 3

Forks: 3

Open Issues: 0

Type:typo3-cms-extension

4.2.0 2023-09-20 19:56 UTC

This package is auto-updated.

Last update: 2024-03-22 12:22:45 UTC


README

Latest Stable Version

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.

EditUser

Optional: You can set an individual HTML E-Mail Template in ExtensionManager Configuration

configuration2

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 ";" )

configuration3

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.