wdb/trigger-sort-mm-table

This TYPO3 extension includes most relevant TCA configuration to demonstrate and test a MySQL-Trigger.

v1.0.0 2022-05-09 08:09 UTC

This package is auto-updated.

Last update: 2024-04-09 12:24:26 UTC


README

This extension includes most relevant TCA configuration to demonstrate and test a MySQL-Trigger.

This is the described problem:

In my extension I have two models team members (parent) and expertise (child). The bidirectional relationsship between the two models is stored in an intermediate table. This works fine bit there is one problem.

When I edit the team member record in the TYPO3 Backend and assign an expertise record to it and then open the corresponding expertise record, the newly assigend team member record is shown at the top of the list instead of at the end. The problem also occurs the other way around.

This is because the sorting respectively sorting_foreign field in the intermediate table is set to its default value (0) when the record is saved.

This is the link to the Stack Overflow question, and this to my answer.

Installation

composer req wdb/trigger-sort-mm-table

To install the trigger look in the file ext_tables_static+adt.sql. It might be possible that it can be installed with TYPO3 in the extension manager, else copy the SQL and execute it in PhpMyAdmin or another DBMS.

The extensionKey is btp and the namespace \WDB\Btp due to the namings in the question on Stack Overflow.

Usage

On any page in the TYPO3 backend you can create Team- and Expertise-records. In each of them you can chose or create some records of the other kind. To monitor what's happening the best is to control in the mm-table in PhpMyAdmin.

These are the tables:

  • tx_btp_domain_model_team
  • tx_btp_domain_model_expertise
  • tx_btp_team_expertise_mm

The table tx_btp_team_expertise_mm includes a debug field that is filled by the trigger with some relevant values when the trigger is active.