egroupware_official/admin/setup/setup.inc.php
2002-10-28 01:31:33 +00:00

74 lines
2.0 KiB
PHP
Executable File

<?php
/**************************************************************************\
* phpGroupWare - administration *
* 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$ */
$setup_info['admin']['name'] = 'admin';
$setup_info['admin']['version'] = '0.9.13.002';
$setup_info['admin']['app_order'] = 1;
$setup_info['admin']['tables'] = '';
$setup_info['admin']['enable'] = 1;
$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'
);
$setup_info['admin']['license'] = 'GPL';
$setup_info['admin']['description'] = 'phpGroupWare 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',
'manual',
'view_user'
);
/* Dependencies for this app to work */
$setup_info['admin']['depends'][] = array
(
'appname' => 'phpgwapi',
'versions' => Array('0.9.15')
);
?>