egroupware/admin/setup/setup.inc.php
2003-05-03 23:24:23 +00:00

57 lines
1.7 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' => 'phpGroupWare coreteam',
'email' => 'phpgroupware-developers@gnu.org',
'url' => 'www.phpgroupware.org/coredevelopers'
);
$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')
);
?>