mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-22 20:56:11 +01:00
Daniel Siepmann
1d3c28f228
That way it is possible to alter the TYPO3 page title when showing a date or event. Relates: #10640
32 lines
687 B
PHP
32 lines
687 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'tt_content' => [
|
|
0 => [
|
|
'uid' => '1',
|
|
'pid' => '1',
|
|
'CType' => 'list',
|
|
'list_type' => 'events_dateshow',
|
|
'header' => 'Singleview',
|
|
],
|
|
],
|
|
'tx_events_domain_model_event' => [
|
|
0 => [
|
|
'uid' => '1',
|
|
'pid' => '2',
|
|
'title' => 'Title of Event',
|
|
'hidden' => '0',
|
|
],
|
|
],
|
|
'tx_events_domain_model_date' => [
|
|
0 => [
|
|
'uid' => '1',
|
|
'pid' => '2',
|
|
'event' => '1',
|
|
'start' => '1676419200',
|
|
'end' => '1676484000',
|
|
],
|
|
],
|
|
];
|