mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-10 07:58:41 +01:00
21d8e8fd62
- not set user-prefs use the default value, default values have been used only for new accounts before - preference-table has new column preference_app - preferences got automaticaly quoted now, eg. its save to use single and double quotes as well as backslashs
77 lines
3.1 KiB
PHP
Executable File
77 lines
3.1 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* 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$ */
|
|
|
|
/* Basic information about this app */
|
|
$setup_info['phpgwapi']['name'] = 'phpgwapi';
|
|
$setup_info['phpgwapi']['version'] = '0.9.15.011';
|
|
$setup_info['phpgwapi']['versions']['current_header'] = '1.23';
|
|
$setup_info['phpgwapi']['enable'] = 3;
|
|
$setup_info['phpgwapi']['app_order'] = 1;
|
|
|
|
$setup_info['phpgwapi']['author'][] = array
|
|
(
|
|
'name' => 'phpGroupWare coreteam',
|
|
'email' => 'phpgroupware-developers@gnu.org'
|
|
);
|
|
|
|
$setup_info['phpgwapi']['description'] = 'The core of phpGroupWare, the API itself';
|
|
|
|
$setup_info['phpgwapi']['maintainer'][] = array
|
|
(
|
|
'name' => 'Joseph Engo',
|
|
'email' => 'jengo@phpgroupware.org'
|
|
);
|
|
|
|
$setup_info['phpgwapi']['maintainer'][] = array
|
|
(
|
|
'name' => 'Bettina Gille',
|
|
'email' => 'ceb@phpgroupware.org'
|
|
);
|
|
|
|
$setup_info['phpgwapi']['maintainer'][] = array
|
|
(
|
|
'name' => 'Dan Kuykendall',
|
|
'email' => 'seek3r@phpgroupware.org'
|
|
);
|
|
|
|
/* 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';
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_nextid';
|
|
$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';
|
|
$setup_info['phpgwapi']['tables'][] = 'phpgw_history_log';
|
|
|
|
/* Basic information about this app */
|
|
$setup_info['notifywindow']['name'] = 'notifywindow';
|
|
$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';
|
|
?>
|