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
|
<?php
/* -*- Mode: php; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
$PAGE_DIR = "../pages";
$DATA_DIR = "../data";
$ALBUMS_DIR = "gfx/albums";
$ICONS_DIR = "gfx/icons";
$MEMBERS_DIR = "gfx/members";
$UTIL_DIR = "../utils";
$MODULES_DIR = $UTIL_DIR . "/modules";
$MODULES = array("news", "events", "pages", "gallery", "config", "icons", "members");
$DEFAULT_PAGE = "news";
$ADMIN_TIMEOUT = 60*60; // 60 min timeout
$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");
?>
|