92 lines
3.1 KiB
PHP
92 lines
3.1 KiB
PHP
<?php
|
|
|
|
header('Content-type: application/json');
|
|
header("Access-Control-Allow-Origin: *");
|
|
|
|
echo '
|
|
{
|
|
"db" : {
|
|
"restaurants" : {
|
|
"id" : "resto",
|
|
"type" : "list",
|
|
"nameFR" : "Restaurant",
|
|
"nameEN" : "Restaurant",
|
|
"nameIT" : "Ristoranti",
|
|
"sub" : {
|
|
"italiens" : {
|
|
"id": "restoital",
|
|
"type" : "list",
|
|
"nameFR" : "Italien",
|
|
"nameEN" : "Italian",
|
|
"nameIT" : "Italiano",
|
|
"sub" : {
|
|
"SanTelmo" : {
|
|
"id": "santelmo",
|
|
"type" : "item",
|
|
"name": "Sant Elmo",
|
|
"img": "https://ed.brz9.dev/proj/map/asset/img/santelmo.jpg",
|
|
"txtFR": "Français Adipisicing live-edge fam velit. Messenger bag poke laboris aesthetic viral do semiotics authentic est selfies.",
|
|
"txtEN": "English Adipisicing live-edge fam velit. Messenger bag poke laboris aesthetic viral do semiotics authentic est selfies.",
|
|
"txtIT": "Italiano Adipisicing live-edge fam velit. Messenger bag poke laboris aesthetic viral do semiotics authentic est selfies.",
|
|
"card" : {
|
|
"tabs" : {
|
|
"menu" : {
|
|
"priceRange" : "18-32€",
|
|
"dishes" : {
|
|
"divola" : {
|
|
"name" : "Pizza Divola"
|
|
},
|
|
"regina" : {
|
|
"name" : "Pizza Regina"
|
|
}
|
|
}
|
|
},
|
|
"time" : {
|
|
"monAM" : "11h30-14h00",
|
|
"monPM" : "18h30-22h00"
|
|
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"Salsamenteria" : {
|
|
"id" : "salsamenteria",
|
|
"type" : "item",
|
|
"name" : "Salsamenteria di Parma",
|
|
"img" : "https://ed.brz9.dev/proj/map/asset/img/salsamentiera.jpg",
|
|
"txtFR" : "Français Adipisicing live-edge fam velit. Messenger bag poke laboris aesthetic viral do semiotics authentic est selfies.",
|
|
"txtEN" : "English Adipisicing live-edge fam velit. Messenger bag poke laboris aesthetic viral do semiotics authentic est selfies.",
|
|
"txtIT" : "Italiano Adipisicing live-edge fam velit. Messenger bag poke laboris aesthetic viral do semiotics authentic est selfies."
|
|
}
|
|
}
|
|
},
|
|
"vege" : {
|
|
"id" : "restovege",
|
|
"type" : "list",
|
|
"nameFR" : "Végétarien",
|
|
"nameEN" : "Vegan",
|
|
"nameIT" : "Vegetariano",
|
|
"sub" : {
|
|
"SanTelmo" : {
|
|
"id": "santelmo",
|
|
"type" : "item",
|
|
"name": "San Telmo"
|
|
},
|
|
"Salsamenteria" : {
|
|
"id": "salsamenteria",
|
|
"type" : "item",
|
|
"name" : "Salsamenteria di Parma"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
';
|
|
|
|
?>
|