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
|
<?php
$PAGE_DIR = "../pages";
$DATA_DIR = "../data";
$ALBUMS_DIR = "gfx/albums";
$UTIL_DIR = "../utils";
$MODULES_DIR = $UTIL_DIR . "/modules";
$MODULES = array("news", "events", "pages", "gallery");
$DEFAULT_PAGE = "news";
$ADMIN_TIMEOUT = 60*60; // 60 min timeout
$TITLE = "blah";
$PRELOAD = array("gfx/biography_hover.jpg",
"gfx/contact_hover.jpg",
"gfx/discography_hover.jpg",
"gfx/downloads_hover.jpg",
"gfx/gallery_hover.jpg",
"gfx/guestbook_hover.jpg",
"gfx/live_hover.jpg",
"gfx/members_hover.jpg",
"gfx/news_hover.jpg",
"gfx/shop_hover.jpg");
$MENU = array("news" => "News",
"shop" => "Shop",
"downloads" => "Downloads",
"biography" => "Biography",
"live" => "Concerts",
"discography" => "Discography",
"guestbook" => "Guestbook",
"members" => "Members",
"gallery" => "Gallery",
"contact" => "Contact");
?>
|