Konfiguration

PropertyMapper

Für Mappings die folgende Datei anlegen:

Configuration/Extbase/Persistence/Classes.php

Dort sind die Mappings:

<?php
declare(strict_types = 1);
return [
  \RSYS\RsystemplateBootstrap\Domain\Model\Category::class => [
    'tableName' => 'sys_category',
    'recordType' => \RSYS\RsystemplateBootstrap\Domain\Model\Category::class,
    'properties' => [
    'parent' => [
      'fieldName' => 'parentcategory'
    ],
    ],
  ],
]

Erstellt: 03/2013| Geändert: 03/2023