diff options
Diffstat (limited to 'htdocs/config.php.defaults')
-rw-r--r-- | htdocs/config.php.defaults | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/htdocs/config.php.defaults b/htdocs/config.php.defaults index 2bc5373..401e2e7 100644 --- a/htdocs/config.php.defaults +++ b/htdocs/config.php.defaults @@ -1,19 +1,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 +$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"); ?>
\ No newline at end of file |