egroupware_official/admin/setup/setup.inc.php

74 lines
2.0 KiB
PHP
Raw Normal View History

<?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';
$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;
2002-10-28 01:26:57 +01:00
$setup_info['admin']['author'][] = array
(
'name' => 'phpGroupWare coreteam',
'email' => 'phpgroupware-developers@gnu.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Joseph Engo',
'email' => 'jengo@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Marc A. Peters',
'email' => 'skeeter@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Bettina Gille',
'email' => 'ceb@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Dan Kuykendall',
'email' => 'seek3r@phpgroupware.org'
);
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';
/* 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',
'view_user'
);
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',
2002-10-28 01:26:57 +01:00
'versions' => Array('0.9.15')
);
2001-05-20 01:58:48 +02:00
?>