User TSconfig

The module can be configured via user TSconfig for backend users or groups:

recordsPageLimit

recordsPageLimit
Type
integer
Default
25

The number of records displayed per page.

Example
EXT:my_sitepackage/Configuration/user.tsconfig
# Display 100 records per page
mod.recycler.recordsPageLimit = 100
Copied!

allowDelete

allowDelete
Type
boolean
Default
0

By default, editors are not allowed to delete records. Enabling this option allows the editors to delete records from the database permanently.

Example
EXT:my_sitepackage/Configuration/user.tsconfig
# Allow the editors to delete records
mod.recycler.allowDelete = 1
Copied!