mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-23 00:36:09 +01:00
31 lines
656 B
PHP
31 lines
656 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'tt_content' => [
|
|
0 => [
|
|
'uid' => '1',
|
|
'pid' => '1',
|
|
'CType' => 'events_dateshowtest',
|
|
'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',
|
|
],
|
|
],
|
|
];
|