diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-26 20:28:46 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-26 20:28:46 +0000 |
commit | 9c8be228a73a602ac3e91e30bf980dd1cc695a81 (patch) | |
tree | 46b3b2dc825f652410aba04f2d148b566e5b61e5 /lib/ui.lib.php | |
parent | a41697ea25a58ea5db5ed46a251fb62364626b1b (diff) | |
download | ampache-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.php | 15 |
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 + ?> |