thuecat/Tests/Functional/Fixtures/Frontend/TouristAttractionsForIsAccessibleForFree.php

63 lines
1.8 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
return [
'tx_thuecat_tourist_attraction' => [
0 => [
'uid' => '2',
'pid' => '3',
'title' => 'Attraktion mit 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' => '',
'pets_allowed' => '',
'is_accessible_for_free' => 'false',
],
1 => [
'uid' => '3',
'pid' => '3',
'title' => 'Attraktion mit 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' => '',
'pets_allowed' => '',
'is_accessible_for_free' => 'true',
],
],
'tx_thuecat_town' => [
0 => [
'uid' => '1',
'pid' => '3',
'title' => 'Beispielstadt',
'description' => 'Die Beschreibung der Stadt',
],
],
];