2001-02-13 11:53:18 +01:00
|
|
|
<?php
|
2001-06-04 17:19:31 +02:00
|
|
|
/**************************************************************************\
|
2004-01-26 02:29:06 +01:00
|
|
|
* eGroupWare - phpgwapi setup *
|
|
|
|
* http://www.egroupware.org *
|
2001-06-04 17:19:31 +02:00
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
2003-08-28 16:31:11 +02:00
|
|
|
|
|
|
|
// $Id$
|
2001-06-04 17:19:31 +02:00
|
|
|
|
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';
|
2005-11-13 07:58:38 +01:00
|
|
|
$setup_info['phpgwapi']['title'] = 'eGroupWare API';
|
2005-11-13 10:47:05 +01:00
|
|
|
$setup_info['phpgwapi']['version'] = '1.0.1.025';
|
2005-03-03 11:45:52 +01:00
|
|
|
$setup_info['phpgwapi']['versions']['current_header'] = '1.28';
|
2001-06-07 13:28:31 +02:00
|
|
|
$setup_info['phpgwapi']['enable'] = 3;
|
2001-06-03 22:56:46 +02:00
|
|
|
$setup_info['phpgwapi']['app_order'] = 1;
|
2001-05-24 22:28:12 +02:00
|
|
|
|
|
|
|
/* The tables this app creates */
|
2005-11-02 12:45:52 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_config';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_applications';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_acl';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_accounts';
|
2005-11-13 08:49:56 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_preferences';
|
2005-11-13 10:16:31 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_sessions';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_app_sessions';
|
2005-11-13 10:47:05 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_access_log';
|
2005-11-13 07:58:38 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_hooks';
|
2005-11-04 19:35:09 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_languages';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_lang';
|
2001-10-06 04:35:37 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_nextid';
|
2005-11-05 23:58:51 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_categories';
|
2001-10-06 04:35:37 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_addressbook';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_addressbook_extra';
|
2005-11-02 12:45:52 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_log';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_log_msg';
|
2001-10-06 04:35:37 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_interserv';
|
2005-02-26 14:58:53 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_vfs';
|
2001-10-12 20:19:45 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_history_log';
|
2005-05-23 20:57:58 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_async';
|
2005-02-28 00:30:55 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_api_content_history';
|
2005-10-01 11:12:46 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs2_mimetypes';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs2_files';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs2_customfields';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs2_quota';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs2_shares';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs2_versioning';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs2_customfields_data';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs2_prefixes';
|
2005-06-19 16:22:34 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_contentmap';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_syncmldevinfo';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_syncmlsummary';
|
2005-10-01 22:18:41 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_links';
|
2001-06-07 13:28:31 +02:00
|
|
|
|
|
|
|
/* Basic information about this app */
|
|
|
|
$setup_info['notifywindow']['name'] = 'notifywindow';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['notifywindow']['title'] = 'Notify Window';
|
2004-07-03 00:25:26 +02:00
|
|
|
$setup_info['notifywindow']['version'] = '1.0.0';
|
2001-06-07 13:28:31 +02:00
|
|
|
$setup_info['notifywindow']['enable'] = 2;
|
|
|
|
$setup_info['notifywindow']['app_order'] = 1;
|
|
|
|
$setup_info['notifywindow']['tables'] = '';
|
|
|
|
$setup_info['notifywindow']['hooks'][] = 'home';
|