From bcad40a05ab2dc2a341a3227e30b96668bce4500 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Thu, 9 Jun 2005 16:34:40 +0000 Subject: New Import --- templates/menu.inc | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 templates/menu.inc (limited to 'templates/menu.inc') diff --git a/templates/menu.inc b/templates/menu.inc new file mode 100644 index 00000000..c98658dd --- /dev/null +++ b/templates/menu.inc @@ -0,0 +1,85 @@ + htmlspecialchars(conf('web_path') . "/index.php"), + _("Albums") => htmlspecialchars(conf('web_path') . "/albums.php"), + _("Artists") => htmlspecialchars(conf('web_path') . "/artists.php"), + _("Playlists") => htmlspecialchars(conf('web_path') . "/playlist.php"), + _("Search") => htmlspecialchars(conf('web_path') . "/search.php"), + _("Preferences") => htmlspecialchars(conf('web_path') . "/preferences.php") + ); +if ($GLOBALS['user']->prefs['upload']) { + $items = array_merge($items, array(_("Upload") => conf('web_path') . "/upload.php")); +} + + +?> + + -- cgit