mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 20:14:19 +01:00
462719d45e
- all commands get loged and optional documented with requesting person and a comment - all commands can be run immediatly or scheduled for a later execusion - all commands can be run either from a command line (admin-cli), from the web GUI or via a remore administration from a different instance current status: - command queue / history table created (need to be installed) - base class for all comments - one exemplary command to change application rights of users or groups - admin-cli used the above comment and has additional parameters to set the requesting person, scheduled execution time and comment - GUI to watch the queue / history - URL to excute/schedule commands remote More to come now on a daily basis
56 lines
1.5 KiB
PHP
Executable File
56 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* eGroupWare - Admin
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package admin
|
|
* @subpackage setup
|
|
* @version $Id$
|
|
*/
|
|
|
|
$setup_info['admin']['name'] = 'admin';
|
|
$setup_info['admin']['version'] = '1.5.001';
|
|
$setup_info['admin']['app_order'] = 1;
|
|
$setup_info['admin']['tables'] = array('egw_admin_queue');
|
|
$setup_info['admin']['enable'] = 1;
|
|
|
|
$setup_info['admin']['author'][] = array(
|
|
'name' => 'eGroupWare coreteam',
|
|
'email' => 'egroupware-developers@lists.sourceforge.net'
|
|
);
|
|
|
|
$setup_info['admin']['maintainer'][] = array(
|
|
'name' => 'eGroupWare coreteam',
|
|
'email' => 'egroupware-developers@lists.sourceforge.net',
|
|
'url' => 'www.egroupware.org'
|
|
);
|
|
|
|
$setup_info['admin']['license'] = 'GPL';
|
|
$setup_info['admin']['description'] = 'eGroupWare administration application';
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
$setup_info['admin']['hooks'] = array(
|
|
'acl_manager',
|
|
'add_def_pref',
|
|
'admin',
|
|
'after_navbar',
|
|
'config',
|
|
'deleteaccount',
|
|
'view_user' => 'admin.uiaccounts.edit_view_user_hook',
|
|
'edit_user' => 'admin.uiaccounts.edit_view_user_hook',
|
|
'group_manager' => 'admin.uiaccounts.edit_group_hook',
|
|
'sidebox_menu',
|
|
'topmenu_info'
|
|
);
|
|
|
|
/* Dependencies for this app to work */
|
|
$setup_info['admin']['depends'][] = array(
|
|
'appname' => 'phpgwapi',
|
|
'versions' => Array('1.4','1.5')
|
|
);
|
|
$setup_info['admin']['depends'][] = array(
|
|
'appname' => 'etemplate',
|
|
'versions' => Array('1.4','1.5')
|
|
);
|