egroupware/admin/setup/setup.inc.php

54 lines
1.9 KiB
PHP
Raw Normal View History

<?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';
2004-07-03 00:32:53 +02:00
$setup_info['admin']['version'] = '1.0.0';
$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;
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';
/* 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',
'view_user' => 'admin.uiaccounts.edit_view_user_hook',
'edit_user' => 'admin.uiaccounts.edit_view_user_hook',
'group_manager' => 'admin.uiaccounts.edit_group_hook',
2003-09-13 16:39:30 +02:00
'sidebox_menu'
2002-10-28 02:31:33 +01: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',
'versions' => Array('0.9.14','0.9.15','1.0.0','1.0.1')
);
2001-05-20 01:58:48 +02:00
?>