2001-02-13 11:53:18 +01:00
|
|
|
<?php
|
2001-06-04 17:19:31 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - phpgwapi setup *
|
|
|
|
* 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-24 22:28:12 +02:00
|
|
|
/* Basic information about this app */
|
2001-06-03 22:56:46 +02:00
|
|
|
$setup_info['phpgwapi']['name'] = 'phpgwapi';
|
|
|
|
$setup_info['phpgwapi']['title'] = 'phpgwapi';
|
|
|
|
$setup_info['phpgwapi']['version'] = '0.9.13.002';
|
2001-06-01 03:03:30 +02:00
|
|
|
$setup_info['phpgwapi']['versions']['current_header'] = '1.16';
|
2001-06-03 22:56:46 +02:00
|
|
|
$setup_info['phpgwapi']['enable'] = 2;
|
|
|
|
$setup_info['phpgwapi']['app_order'] = 1;
|
2001-05-24 22:28:12 +02:00
|
|
|
|
|
|
|
/* The tables this app creates */
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_sessions';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_preferences';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_acl';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_hooks';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_config';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_categories';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_applications';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_app_sessions';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_accounts';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_access_log';
|
2001-05-24 22:31:52 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'lang';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'languages';
|
2001-05-28 14:43:36 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_nextid';
|
2001-05-24 22:31:52 +02:00
|
|
|
?>
|