I try to map the tx_formhandler_log
. But it just wont work.
At the ext_tables.php i call
$tmp_columns = Array (
"checkbox" => Array (
"exclude" => 1,
"label" => "exported",
"config" => Array (
"type" => "check",
"size" => "1",
)
),
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTCAcolumns('tx_formhandler_log', $tmp_columns, 1);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addToAllTCAtypes('tx_formhandler_log','checkbox;;;;1-1-1');
also i still added in the ext_typoscript_setup.txt
config.tx_extbase{
persistence{
classes{
TYPO3\MyExt\Domain\Model\Log {
mapping {
tableName = tx_formhandler_log
recordType =
}
}
}
}
}
At \TYPO3\MyExt\Domain\Model\Log
there are all setter an getter.
The same configuration works in other extension, but not at mine. At my extension i have a working pages
mapping, but the tx_formhandler_log
-mapping wont work.
I do not understand, what i have forgotten. Can somebody helps me?