2001-02-13 11:53:18 +01:00
|
|
|
<?php
|
2001-05-24 22:28:12 +02:00
|
|
|
/* Basic information about this app */
|
2001-05-20 02:03:17 +02:00
|
|
|
$setup_info['phpgwapi']['name'] = 'phpgwapi';
|
|
|
|
$setup_info['phpgwapi']['title'] = 'phpgwapi';
|
2001-05-19 08:09:07 +02:00
|
|
|
$setup_info['phpgwapi']['version'] = '0.9.11';
|
|
|
|
// $setup_info['phpgwapi']['app_order'] = '6';
|
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';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_lang';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_languages';
|
|
|
|
?>
|