2000-09-23 07:31:51 +02:00
|
|
|
<?php
|
2001-05-16 07:12:20 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - administration *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
2000-09-23 07:31:51 +02:00
|
|
|
|
2001-05-24 03:13:09 +02:00
|
|
|
{
|
|
|
|
// Only Modify the $file and $title variables.....
|
|
|
|
$title = $appname;
|
|
|
|
$file = Array(
|
2001-06-12 19:24:25 +02:00
|
|
|
'Site Configuration' => $phpgw->link('/admin/config.php','appname=' . $appname),
|
2001-05-24 03:13:09 +02:00
|
|
|
'User Accounts' => $phpgw->link('/admin/accounts.php'),
|
|
|
|
'User Groups' => $phpgw->link('/admin/groups.php'),
|
|
|
|
'Applications' => $phpgw->link('/admin/applications.php'),
|
|
|
|
'Global Categories' => $phpgw->link('/admin/categories.php'),
|
|
|
|
'Change Main Screen Message' => $phpgw->link('/admin/mainscreen_message.php'),
|
|
|
|
'View Sessions' => $phpgw->link('/admin/currentusers.php'),
|
2001-06-12 03:03:06 +02:00
|
|
|
'View Access Log' => $phpgw->link('/admin/accesslog.php'),
|
|
|
|
'phpInfo' => $phpgw->link('/admin/phpinfo.php')
|
2001-05-24 03:13:09 +02:00
|
|
|
);
|
|
|
|
//Do not modify below this line
|
|
|
|
display_section($appname,$title,$file);
|
2000-09-23 07:31:51 +02:00
|
|
|
}
|
2001-03-25 03:07:28 +02:00
|
|
|
?>
|