mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-14 17:26:12 +01:00
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'tx_thuecat_tourist_attraction' => [
|
|
0 => [
|
|
'uid' => '2',
|
|
'pid' => '3',
|
|
'title' => 'Attraktion mit public_access = false',
|
|
'description' => '',
|
|
'town' => '0',
|
|
'media' => '',
|
|
'opening_hours' => '',
|
|
'address' => '',
|
|
'offers' => '',
|
|
'slogan' => '',
|
|
'start_of_construction' => '',
|
|
'sanitation' => '',
|
|
'other_service' => '',
|
|
'museum_service' => '',
|
|
'architectural_style' => '',
|
|
'traffic_infrastructure' => '',
|
|
'payment_accepted' => '',
|
|
'digital_offer' => '',
|
|
'photography' => '',
|
|
'public_access' => 'false',
|
|
],
|
|
1 => [
|
|
'uid' => '3',
|
|
'pid' => '3',
|
|
'title' => 'Attraktion mit public_access = true',
|
|
'description' => '',
|
|
'town' => '0',
|
|
'media' => '',
|
|
'opening_hours' => '',
|
|
'address' => '',
|
|
'offers' => '',
|
|
'slogan' => '',
|
|
'start_of_construction' => '',
|
|
'sanitation' => '',
|
|
'other_service' => '',
|
|
'museum_service' => '',
|
|
'architectural_style' => '',
|
|
'traffic_infrastructure' => '',
|
|
'payment_accepted' => '',
|
|
'digital_offer' => '',
|
|
'photography' => '',
|
|
'public_access' => 'true',
|
|
],
|
|
],
|
|
'tx_thuecat_town' => [
|
|
0 => [
|
|
'uid' => '1',
|
|
'pid' => '3',
|
|
'title' => 'Beispielstadt',
|
|
'description' => 'Die Beschreibung der Stadt',
|
|
],
|
|
],
|
|
];
|