2001-05-19 08:09:07 +02:00
|
|
|
<?php
|
2001-06-03 22:56:46 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Preferences *
|
|
|
|
* 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 02:03:17 +02:00
|
|
|
$setup_info['preferences']['name'] = 'preferences';
|
2001-06-17 18:57:32 +02:00
|
|
|
$setup_info['preferences']['version'] = '0.9.13.002';
|
2001-05-19 08:09:07 +02:00
|
|
|
$setup_info['preferences']['app_order'] = 1;
|
2001-05-20 02:03:17 +02:00
|
|
|
$setup_info['preferences']['tables'] = '';
|
2001-06-03 22:56:46 +02:00
|
|
|
$setup_info['preferences']['enable'] = 2;
|
2001-05-29 16:15:53 +02:00
|
|
|
|
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'
|
|
|
|
);
|
|
|
|
|
|
|
|
$setup_info['admin']['license'] = 'GPL';
|
|
|
|
$setup_info['admin']['description'] = 'phpGroupWare preferences application';
|
|
|
|
|
2001-05-29 16:15:53 +02:00
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
2002-10-24 22:23:34 +02:00
|
|
|
$setup_info['preferences']['hooks'][] = 'deleteaccount';
|
2002-01-02 16:27:36 +01:00
|
|
|
$setup_info['preferences']['hooks'][] = 'config';
|
|
|
|
$setup_info['preferences']['hooks'][] = 'manual';
|
|
|
|
$setup_info['preferences']['hooks'][] = 'preferences';
|
|
|
|
$setup_info['preferences']['hooks'][] = 'settings';
|
2001-05-29 16:15:53 +02:00
|
|
|
|
2002-04-28 17:54:11 +02:00
|
|
|
/* Dependencies for this app to work */
|
2002-10-28 01:26:57 +01:00
|
|
|
$setup_info['preferences']['depends'][] = array
|
|
|
|
(
|
2001-05-29 16:15:53 +02:00
|
|
|
'appname' => 'phpgwapi',
|
2002-10-28 01:26:57 +01:00
|
|
|
'versions' => Array('0.9.15')
|
2001-05-29 16:15:53 +02:00
|
|
|
);
|
2001-05-20 02:03:17 +02:00
|
|
|
?>
|