2001-05-23 21:07:45 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Info Log 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$ */
|
2002-11-03 02:03:07 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
$file = Array
|
|
|
|
(
|
|
|
|
'Site configuration' => $GLOBALS['phpgw']->link('/index.php',array('menuaction' => 'infolog.uiinfolog.admin' )),
|
|
|
|
'Global Categories' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicategories.index&appname=' . $appname . '&global_cats=True'),
|
|
|
|
'CSV-Import' => $GLOBALS['phpgw']->link('/infolog/csv_import.php')
|
|
|
|
);
|
|
|
|
|
2001-05-24 17:06:42 +02:00
|
|
|
//Do not modify below this line
|
2002-11-03 02:03:07 +01:00
|
|
|
display_section($appname,$file);
|
|
|
|
}
|
2001-05-23 21:07:45 +02:00
|
|
|
?>
|