forked from extern/egroupware
35 lines
1.5 KiB
PHP
Executable File
35 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - User manual *
|
|
* 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$ */
|
|
|
|
$phpgw_flags = Array(
|
|
'currentapp' => 'manual',
|
|
'admin_header' => True,
|
|
'enable_utilities_class' => True
|
|
);
|
|
$phpgw_info['flags'] = $phpgw_flags;
|
|
include('../../header.inc.php');
|
|
$appname = 'admin;
|
|
?>
|
|
<img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border=0>
|
|
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2"><p/>
|
|
This function is usually only available to the systems administrator of the system.
|
|
Administration of all applications, user and group accounts, session logging and control.
|
|
<ul>
|
|
<li><b>Account management:</b><p/>
|
|
<i>User accounts:</i><br/>
|
|
Create, edit and delete users accounts. Set membership of groups, and access to applications.<p/>
|
|
<i>User groups:</i><br/>
|
|
Create, edit and delete groups.<p/>
|
|
</ul></font>
|
|
<?php $phpgw->common->phpgw_footer(); ?>
|