-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroutes.php
58 lines (47 loc) · 1.21 KB
/
routes.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* Domain mapping
*/
c::set("domains", array(
"gemuese.test" => "gemuese",
"celik-obstgemuese.at" => "gemuese",
"www.celik-obstgemuese.at" => "gemuese",
"pastolore.test" => "pastolore",
"pastolore.webarchitects.at" => "pastolore",
"www.pastolore.webarchitects.at" => "pastolore"
));
/**
* Routen
*/
c::set("routes", array(
/* Gemüsehändler */
"gemuese.de" => array(
"aktuelle-angebote" => "news",
"online-bestellung" => "order",
"obst-korb" => "fruits",
"ueber-celik" => "about",
"kontakt" => "contact",
"impressum" => "contact"
),
"gemuese.en" => array(
"actual-offers" => "news",
"online-order" => "order",
"fruits-basket" => "fruits",
"about-celik" => "about",
"contact" => "contact",
"imprint" => "contact"
),
"gemuese.es" => array(
"noticias-ofertas" => "news",
"tienda-online" => "order",
"cesta-de-frutas" => "fruits",
"quienes-somos" => "about",
"contacto" => "contact",
"imprenta" => "contact"
),
"pastolore.de" => array(
"online-bestellung" => "order",
"kontakt" => "contact"
)
));
?>