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. *
|
|
|
|
\**************************************************************************/
|
2003-08-28 16:31:11 +02:00
|
|
|
|
|
|
|
// $Id$
|
|
|
|
// $Source$
|
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';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['phpgwapi']['title'] = 'phpgwapi';
|
2004-01-25 07:15:02 +01:00
|
|
|
$setup_info['phpgwapi']['version'] = '0.9.99.012';
|
2004-01-18 22:03:56 +01:00
|
|
|
$setup_info['phpgwapi']['versions']['current_header'] = '1.26';
|
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 */
|
2001-10-06 04:35:37 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_config';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_applications';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_acl';
|
2001-10-06 04:35:37 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_accounts';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_preferences';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_sessions';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_app_sessions';
|
2001-10-06 04:35:37 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_access_log';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_hooks';
|
2002-02-17 20:31:50 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_languages';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_lang';
|
2001-10-06 04:35:37 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_nextid';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_categories';
|
2001-10-06 04:35:37 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_addressbook';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_addressbook_extra';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_log';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_log_msg';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_interserv';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_vfs';
|
2001-10-12 20:19:45 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_history_log';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_async';
|
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';
|
2001-06-07 13:28:31 +02:00
|
|
|
$setup_info['notifywindow']['version'] = '0.9.13.002';
|
|
|
|
$setup_info['notifywindow']['enable'] = 2;
|
|
|
|
$setup_info['notifywindow']['app_order'] = 1;
|
|
|
|
$setup_info['notifywindow']['tables'] = '';
|
|
|
|
$setup_info['notifywindow']['hooks'][] = 'home';
|
2003-08-28 16:31:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-09-13 20:19:03 +02:00
|
|
|
|
2003-09-25 03:33:59 +02:00
|
|
|
|
2003-10-04 16:06:15 +02:00
|
|
|
|
2004-01-25 07:15:02 +01:00
|
|
|
|
|
|
|
|