2001-05-19 08:09:07 +02:00
|
|
|
<?php
|
2001-06-03 22:56:46 +02:00
|
|
|
/**************************************************************************\
|
2004-01-22 03:36:59 +01:00
|
|
|
* eGroupWare - Administration *
|
|
|
|
* http://www.egroupware.org *
|
2001-06-03 22:56:46 +02:00
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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$ */
|
|
|
|
|
2001-05-20 01:58:48 +02:00
|
|
|
$setup_info['admin']['name'] = 'admin';
|
2007-04-30 11:10:36 +02:00
|
|
|
$setup_info['admin']['version'] = '1.4';
|
2001-05-19 08:09:07 +02:00
|
|
|
$setup_info['admin']['app_order'] = 1;
|
2001-05-20 01:58:48 +02:00
|
|
|
$setup_info['admin']['tables'] = '';
|
2001-06-03 22:56:46 +02:00
|
|
|
$setup_info['admin']['enable'] = 1;
|
2001-05-29 16:13:03 +02:00
|
|
|
|
2004-01-22 03:36:59 +01:00
|
|
|
$setup_info['admin']['author'][] = array(
|
|
|
|
'name' => 'eGroupWare coreteam',
|
2004-07-03 00:32:53 +02:00
|
|
|
'email' => 'egroupware-developers@lists.sourceforge.net'
|
2002-10-28 01:26:57 +01:00
|
|
|
);
|
|
|
|
|
2004-01-22 03:36:59 +01:00
|
|
|
$setup_info['admin']['maintainer'][] = array(
|
|
|
|
'name' => 'eGroupWare coreteam',
|
2004-07-03 00:32:53 +02:00
|
|
|
'email' => 'egroupware-developers@lists.sourceforge.net',
|
2004-01-22 03:36:59 +01:00
|
|
|
'url' => 'www.egroupware.org'
|
2002-10-28 01:26:57 +01:00
|
|
|
);
|
|
|
|
|
2002-04-27 17:35:26 +02:00
|
|
|
$setup_info['admin']['license'] = 'GPL';
|
2004-01-22 03:36:59 +01:00
|
|
|
$setup_info['admin']['description'] = 'eGroupWare administration application';
|
2002-04-25 03:19:52 +02:00
|
|
|
|
2001-05-29 16:13:03 +02:00
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
2004-01-22 03:36:59 +01:00
|
|
|
$setup_info['admin']['hooks'] = array(
|
2002-10-28 02:31:33 +01:00
|
|
|
'acl_manager',
|
|
|
|
'add_def_pref',
|
|
|
|
'admin',
|
|
|
|
'after_navbar',
|
|
|
|
'config',
|
|
|
|
'deleteaccount',
|
2003-09-24 18:48:04 +02:00
|
|
|
'view_user' => 'admin.uiaccounts.edit_view_user_hook',
|
|
|
|
'edit_user' => 'admin.uiaccounts.edit_view_user_hook',
|
2005-02-28 17:12:31 +01:00
|
|
|
'group_manager' => 'admin.uiaccounts.edit_group_hook',
|
2007-01-24 00:35:12 +01:00
|
|
|
'sidebox_menu',
|
|
|
|
'topmenu_info'
|
2002-10-28 02:31:33 +01:00
|
|
|
);
|
2001-05-29 16:13:03 +02:00
|
|
|
|
2002-03-13 05:41:45 +01:00
|
|
|
/* Dependencies for this app to work */
|
2004-01-22 03:36:59 +01:00
|
|
|
$setup_info['admin']['depends'][] = array(
|
2002-06-18 03:13:43 +02:00
|
|
|
'appname' => 'phpgwapi',
|
2007-04-30 11:10:36 +02:00
|
|
|
'versions' => Array('1.3','1.4','1.5')
|
|
|
|
);
|
|
|
|
$setup_info['admin']['depends'][] = array(
|
|
|
|
'appname' => 'etemplate',
|
|
|
|
'versions' => Array('1.3','1.4','1.5')
|
2001-05-29 16:13:03 +02:00
|
|
|
);
|
2001-05-20 01:58:48 +02:00
|
|
|
?>
|