2001-05-19 08:09:07 +02:00
|
|
|
<?php
|
2001-06-03 22:56:46 +02:00
|
|
|
/**************************************************************************\
|
2002-03-13 05:41:45 +01:00
|
|
|
* phpGroupWare - administration *
|
2001-06-03 22:56:46 +02:00
|
|
|
* 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$ */
|
|
|
|
|
2001-05-20 01:58:48 +02:00
|
|
|
$setup_info['admin']['name'] = 'admin';
|
2001-06-17 18:57:32 +02:00
|
|
|
$setup_info['admin']['version'] = '0.9.13.002';
|
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
|
|
|
|
2002-10-28 01:26:57 +01:00
|
|
|
$setup_info['admin']['author'][] = array
|
|
|
|
(
|
|
|
|
'name' => 'phpGroupWare coreteam',
|
|
|
|
'email' => 'phpgroupware-developers@gnu.org'
|
|
|
|
);
|
|
|
|
|
2003-05-04 01:24:23 +02:00
|
|
|
$setup_info['admin']['maintainer'][] = array
|
2002-10-28 01:26:57 +01:00
|
|
|
(
|
2003-05-04 01:24:23 +02:00
|
|
|
'name' => 'phpGroupWare coreteam',
|
|
|
|
'email' => 'phpgroupware-developers@gnu.org',
|
|
|
|
'url' => 'www.phpgroupware.org/coredevelopers'
|
2002-10-28 01:26:57 +01:00
|
|
|
);
|
|
|
|
|
2002-04-27 17:35:26 +02:00
|
|
|
$setup_info['admin']['license'] = 'GPL';
|
2002-10-28 01:26:57 +01:00
|
|
|
$setup_info['admin']['description'] = 'phpGroupWare 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 */
|
2002-10-28 02:31:33 +01:00
|
|
|
|
|
|
|
$setup_info['admin']['hooks'] = array
|
|
|
|
(
|
|
|
|
'acl_manager',
|
|
|
|
'add_def_pref',
|
|
|
|
'admin',
|
|
|
|
'after_navbar',
|
|
|
|
'config',
|
|
|
|
'deleteaccount',
|
|
|
|
'manual',
|
2003-09-24 18:48:04 +02:00
|
|
|
'view_user' => 'admin.uiaccounts.edit_view_user_hook',
|
|
|
|
'edit_user' => 'admin.uiaccounts.edit_view_user_hook',
|
2003-09-13 16:39:30 +02:00
|
|
|
'sidebox_menu'
|
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 */
|
2002-10-28 01:26:57 +01:00
|
|
|
$setup_info['admin']['depends'][] = array
|
|
|
|
(
|
2002-06-18 03:13:43 +02:00
|
|
|
'appname' => 'phpgwapi',
|
2003-08-30 08:08:42 +02:00
|
|
|
'versions' => Array('0.9.14','0.9.15')
|
2001-05-29 16:13:03 +02:00
|
|
|
);
|
2001-05-20 01:58:48 +02:00
|
|
|
?>
|