Frontend Users Reminder

Reminds a frontend user, if a record becomes deprecated.

Properties:

  • E-mail of the task manager (sender)

  • Development / Production settings

  • Draft for the e-mail with the header data From, Cc (optional), Bcc (optional), Subject and the placeholder %table.field%

  • Available tables (see requirements below)

  • Remind again in ...

Requirements

Records must be owned by a frontend user.

Tables are available, if they have configured the fields fe_cruser_id and tstamp in the TCA ctrl section. tstamp is configured by default.

See example code below.

$TCA = [
  'ctrl' => [
    ...
    'fe_cruser_id' => 'fe_cruser_id',
    'tstamp'       => 'tstamp',
    ...

By the way

The task above makes sense when frontend users can manage data such as job postings. After a certain expiration date, they should be reminded to delete their data if it is outdated.

Frontend editing allows, among others, the extensions

Table of Contents