3. Configuration¶
Target group: Administrators
Content element¶
It is possible to adjust the CSS classes of the content element table via TypoScript:
tt_content.tx_jobrouterdata_table {
settings {
cssClasses {
# The class of the table tag
table = ce-table
# The class of table cells which should be aligned left
left = ce-align-left
# The class of table cells which should be aligned centered
center = ce-align-center
# The class of table cells which should be aligned right
right = ce-align-right
}
}
}
The alignment is selected when configuring the table columns.
Logging¶
If separate logging is necessary to track synchronisations and possible warnings or errors, you can set up log writers depending on your needs.
Example: To log all warnings and higher levels of this extension into a
separate file, add this snippet to the ext_localconf.php
file of your
site package extension:
$GLOBALS['TYPO3_CONF_VARS']['LOG']['Brotkrueml']['JobRouterData']['writerConfiguration'][\Psr\Log\Level::WARNING] = [
\TYPO3\CMS\Core\Log\Writer\FileWriter::class => [
'logFileInfix' => 'jobrouter_data'
]
];
The messages are then written to the
var/log/typo3_jobrouter_data_<hash>.log
file.