summaryrefslogtreecommitdiffstats
path: root/lib/ui.lib.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-11-26 20:28:46 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-11-26 20:28:46 +0000
commit9c8be228a73a602ac3e91e30bf980dd1cc695a81 (patch)
tree46b3b2dc825f652410aba04f2d148b566e5b61e5 /lib/ui.lib.php
parenta41697ea25a58ea5db5ed46a251fb62364626b1b (diff)
downloadampache-9c8be228a73a602ac3e91e30bf980dd1cc695a81.tar.gz
ampache-9c8be228a73a602ac3e91e30bf980dd1cc695a81.tar.bz2
ampache-9c8be228a73a602ac3e91e30bf980dd1cc695a81.zip
playlist switcher, plugin interface and the shell of a lastfm plugin (need patch file)
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r--lib/ui.lib.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php
index c1f676ee..e1154b21 100644
--- a/lib/ui.lib.php
+++ b/lib/ui.lib.php
@@ -1426,5 +1426,20 @@ function xml_get_footer($type){
}
} //xml_get_footer
+/**
+ * show_manage_users
+ * This is the admin page for showing all of the users
+ */
+function show_manage_users() {
+
+ show_box_top(_('Manage Users'));
+ echo "<ul>\n\t<li><a href=\"".conf('web_path') . "/admin/users.php?action=show_add_user\">" . _('Add a new user') . "</a></li>\n</ul>\n";
+ show_box_bottom();
+
+ /* Show the Users */
+ show_users();
+
+} // show_manage_users
+
?>