-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpagedata.php
More file actions
131 lines (99 loc) · 5.1 KB
/
pagedata.php
File metadata and controls
131 lines (99 loc) · 5.1 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/*
*
* set up site details
*
*/
$siteDetails = array();
$siteDetails['sitetitle'] = "plainfame CMS";
$siteDetails['sitedescription'] = "Yet another simple PHP CMS";
$siteDetails['siteimage'] = "http://plainfamecms.drakedata.com/img/logo.png";
$siteDetails['sitekeywords'] = "CMS,open source,plaincms,plainfamecms";
/*
* SYNTAX:
*
* $pageDataXX - XX = Sprache
* $pageDataXX['abc'] - abc = Adresse (in der Adresszeile)
* $pageDataXX['abc']['type'] - wo der Link aufgeführt werden soll (top, 2D-Art, 3D-Art, bottom)
* $pageDataXX['abc']['title'] - Seitentitel (in der Titelleiste)
* $pageDataXX['abc']['linkname'] - Name des Links
* $pageDataXX['abc']['linkdesc'] - Kurzbeschreibung des Links (für mouse-hover)
* $pageDataXX['abc']['norightcol'] - lade keine rechte Spalte für diese Seite
*
*/
// Deutsch
$pageDataDE = array();
// TOP MENU
$pageDataDE['home']['type'] = "top";
$pageDataDE['home']['title'] = "Willkommen";
$pageDataDE['home']['linkname'] = "Willkommen";
$pageDataDE['home']['linkdesc'] = "Zur Startseite";
$pageDataDE['details']['type'] = "top";
$pageDataDE['details']['title'] = "Über das Projekt";
$pageDataDE['details']['linkname'] = "Über das Projekt";
$pageDataDE['details']['linkdesc'] = "Nähere Details zum SNM Projekt";
$pageDataDE['details']['norightcol'] = true;
$pageDataDE['details']['js'] = array("//code.jquery.com/jquery-1.11.3.min.js","/js/stupidtable.min.js");
$pageDataDE['vote']['type'] = "top";
$pageDataDE['vote']['title'] = "Abstimmen über Bilder";
$pageDataDE['vote']['linkname'] = "Abstimmen";
$pageDataDE['vote']['linkdesc'] = "Abstimmen über Bilder";
$pageDataDE['vote']['norightcol'] = true;
$pageDataDE['vote']['js'] = array("//code.jquery.com/jquery-1.11.3.min.js", "/js/dovote.js");
$pageDataDE['gallery']['type'] = "top";
$pageDataDE['gallery']['title'] = "Fotogalerie";
$pageDataDE['gallery']['linkname'] = "Fotogalerie";
$pageDataDE['gallery']['linkdesc'] = "Nach Kategorien geordnete Fotos";
$pageDataDE['gallery']['js'] = array("//code.jquery.com/jquery-1.11.3.min.js", "/js/blockrotate.js");
// UNTEN
$pageDataDE['githome']['type'] = "bottom";
$pageDataDE['githome']['title'] = "Projektseite auf Git";
$pageDataDE['githome']['linkname'] = "Projektseite auf Git";
$pageDataDE['githome']['linkdesc'] = "Link zur Projektseite auf Git";
$pageDataDE['githome']['url'] = "https://github.com/dukedrake/plainfamecms";
$pageDataDE['kontakt']['type'] = "bottom";
$pageDataDE['kontakt']['title'] = "Kontakt";
$pageDataDE['kontakt']['linkname'] = "Kontakt";
$pageDataDE['kontakt']['linkdesc'] = "Hier können Sie Feedback zum Projekt geben";
$pageDataDE['impressum']['type'] = "bottom";
$pageDataDE['impressum']['title'] = "Impressum";
$pageDataDE['impressum']['linkname'] = "Impressum";
$pageDataDE['impressum']['linkdesc'] = "Impressum";
// Englisch
$pageDataEN = array();
// TOP MENU
$pageDataEN['home']['type'] = "top";
$pageDataEN['home']['title'] = "Welcome";
$pageDataEN['home']['linkname'] = "Welcome";
$pageDataEN['home']['linkdesc'] = "Go to start";
$pageDataEN['details']['type'] = "top";
$pageDataEN['details']['title'] = "Details on the project";
$pageDataEN['details']['linkname'] = "Details";
$pageDataEN['details']['linkdesc'] = "Details on the project";
$pageDataEN['details']['norightcol'] = true;
$pageDataEN['details']['js'] = array("//code.jquery.com/jquery-1.11.3.min.js","/js/stupidtable.min.js");
$pageDataEN['vote']['type'] = "top";
$pageDataEN['vote']['title'] = "Vote for an image";
$pageDataEN['vote']['linkname'] = "vote";
$pageDataEN['vote']['linkdesc'] = "Vote for an image";
$pageDataEN['vote']['norightcol'] = true;
$pageDataEN['vote']['js'] = array("//code.jquery.com/jquery-1.11.3.min.js", "/js/dovote.js");
$pageDataEN['gallery']['type'] = "top";
$pageDataEN['gallery']['title'] = "Picture gallery";
$pageDataEN['gallery']['linkname'] = "Picture gallery";
$pageDataEN['gallery']['linkdesc'] = "categorized photographies";
$pageDataEN['gallery']['js'] = array("//code.jquery.com/jquery-1.11.3.min.js", "/js/blockrotate.js");
// UNTEN
$pageDataEN['githome']['type'] = "bottom";
$pageDataEN['githome']['title'] = "projecthome on Git";
$pageDataEN['githome']['linkname'] = "projecthome on Git";
$pageDataEN['githome']['linkdesc'] = "Link to project home on Git";
$pageDataEN['githome']['url'] = "https://github.com/dukedrake/plainfamecms";
$pageDataEN['kontakt']['type'] = "bottom";
$pageDataEN['kontakt']['title'] = "Contact";
$pageDataEN['kontakt']['linkname'] = "Contact";
$pageDataEN['kontakt']['linkdesc'] = "Here you can send feedback";
$pageDataEN['impressum']['type'] = "bottom";
$pageDataEN['impressum']['title'] = "Imprint";
$pageDataEN['impressum']['linkname'] = "Imprint";
$pageDataEN['impressum']['linkdesc'] = "Imprint of the homepage";