2001-02-13 11:53:18 +01:00
|
|
|
<?php
|
2008-04-20 18:34:16 +02:00
|
|
|
/**
|
2010-09-05 17:24:34 +02:00
|
|
|
* EGroupware - API Setup
|
2008-04-20 18:34:16 +02:00
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @package api
|
|
|
|
* @subpackage setup
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2007-03-13 15:11:56 +01:00
|
|
|
|
2008-04-20 18:34:16 +02:00
|
|
|
/* Basic information about this app */
|
|
|
|
$setup_info['phpgwapi']['name'] = 'phpgwapi';
|
2016-04-02 16:16:20 +02:00
|
|
|
$setup_info['phpgwapi']['title'] = 'EGroupware old API';
|
|
|
|
$setup_info['phpgwapi']['version'] = '14.3.908';
|
2008-10-09 18:22:42 +02:00
|
|
|
$setup_info['phpgwapi']['versions']['current_header'] = '1.29';
|
2008-04-20 18:34:16 +02:00
|
|
|
$setup_info['phpgwapi']['enable'] = 3;
|
|
|
|
$setup_info['phpgwapi']['app_order'] = 1;
|
2009-03-30 16:07:46 +02:00
|
|
|
$setup_info['phpgwapi']['license'] = 'GPL';
|
|
|
|
$setup_info['phpgwapi']['maintainer'] = $setup_info['phpgwapi']['author'] = array(
|
2011-05-07 20:46:29 +02:00
|
|
|
'name' => 'EGroupware coreteam',
|
2009-03-30 16:07:46 +02:00
|
|
|
'email' => 'egroupware-developers@lists.sourceforge.net',
|
|
|
|
);
|
2007-04-26 08:28:36 +02:00
|
|
|
|
2008-04-20 18:34:16 +02:00
|
|
|
/* The tables this app creates */
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_config';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_applications';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_acl';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_accounts';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_preferences';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_access_log';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_languages';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_lang';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_categories';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_history_log';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_async';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_links';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_addressbook';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_addressbook_extra';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_addressbook_lists';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_addressbook2list';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_sqlfs';
|
2008-04-25 21:06:15 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_index_keywords';
|
2008-04-20 18:34:16 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_index';
|
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_cat2entry';
|
2008-05-01 13:44:55 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_locks';
|
2008-10-05 19:07:36 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_sqlfs_props';
|
2014-06-23 16:35:22 +02:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_customfields';
|
2014-11-13 18:31:36 +01:00
|
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_sharing';
|