forked from extern/egroupware
501df49cbb
- if you already run the 1.5.003 update (AND modified anything in the VFS), you have to re-run it, to not loose your modifications or risk an inconsistent VFS (DB does not match filesystem) - to re-run the 1.5.003 update (only if your version is already 1.5.003 or bigger!) run the following sql: UPDATE egw_applications SET app_version=1.5.002 WHERE app_name=phpgwapi - the new vfs supports now an extended ACL, if that is supported by the backend (sqlfs only currently) - eacl allows to set separate recursive acl rights for different users or groups on a directory (and subdirs) - former group grants of group dirs are converted to eacl, thought we only support read or read+write access (no extra add or delete) - attachments via the links class now also use a stream wrapper interface (links_stream_wrapper) and WebDAV as download handler (which requires no longer filemanager run rights)
78 lines
4.1 KiB
PHP
Executable File
78 lines
4.1 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare - phpgwapi setup *
|
|
* http://www.egroupware.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']['title'] = 'eGroupWare API';
|
|
$setup_info['phpgwapi']['version'] = '1.5.006';
|
|
$setup_info['phpgwapi']['versions']['current_header'] = '1.28';
|
|
$setup_info['phpgwapi']['enable'] = 3;
|
|
$setup_info['phpgwapi']['app_order'] = 1;
|
|
|
|
/* 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_sessions';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_app_sessions';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_access_log';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_hooks';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_languages';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_lang';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_nextid';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_categories';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_log';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_log_msg';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_interserv';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_vfs';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_history_log';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_async';
|
|
$setup_info['phpgwapi']['tables'][] = 'egw_api_content_history';
|
|
$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';
|
|
$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';
|
|
|
|
// hooks used by vfs_home_hooks to manage user- and group-directories for the new stream based VFS
|
|
$setup_info['phpgwapi']['hooks']['addaccount'] = 'phpgwapi.vfs_home_hooks.addAccount';
|
|
$setup_info['phpgwapi']['hooks']['deleteaccount'] = 'phpgwapi.vfs_home_hooks.deleteAccount';
|
|
$setup_info['phpgwapi']['hooks']['editaccount'] = 'phpgwapi.vfs_home_hooks.editAccount';
|
|
$setup_info['phpgwapi']['hooks']['addgroup'] = 'phpgwapi.vfs_home_hooks.addGroup';
|
|
$setup_info['phpgwapi']['hooks']['deletegroup'] = 'phpgwapi.vfs_home_hooks.deleteGroup';
|
|
$setup_info['phpgwapi']['hooks']['editgroup'] = 'phpgwapi.vfs_home_hooks.editGroup';
|
|
|
|
/* Basic information about this app */
|
|
$setup_info['notifywindow']['name'] = 'notifywindow';
|
|
$setup_info['notifywindow']['title'] = 'Notify Window';
|
|
$setup_info['notifywindow']['version'] = '1.0.0';
|
|
$setup_info['notifywindow']['enable'] = 2;
|
|
$setup_info['notifywindow']['app_order'] = 1;
|
|
$setup_info['notifywindow']['tables'] = '';
|
|
$setup_info['notifywindow']['hooks'][] = 'home';
|
|
|
|
|
|
|
|
|