mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
0a91bc5aa9
Filterable fields are attempted to be autodetected by using the exportable fields. Records can be filtered by fields with type select,select-cat,select-account,date,date-time (according to egw_record class) only at this time. Filters are saved in the definition and used with scheduled exports. They are also available to the user for modification in the export dialog.
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - importexport
|
|
*
|
|
* @link www.egroupware.org
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package importexport
|
|
* @author Cornelius Weiss <nelius@cwtech.de>
|
|
* @version $Id$
|
|
*/
|
|
|
|
$setup_info['importexport']['name'] = 'importexport';
|
|
$setup_info['importexport']['version'] = '1.9.004';
|
|
$setup_info['importexport']['app_order'] = 2;
|
|
$setup_info['importexport']['enable'] = 2;
|
|
$setup_info['importexport']['tables'] = array('egw_importexport_definitions');
|
|
|
|
$setup_info['importexport']['author'] = 'Cornelius Weiss';
|
|
$setup_info['importexport']['maintainer'] = array(
|
|
'name' => 'eGroupware core team',
|
|
'email' => 'egroupware-developers@lists.sf.net'
|
|
);
|
|
$setup_info['importexport']['autoinstall'] = true; // install automatically on update
|
|
|
|
$setup_info['importexport']['license'] = 'GPL';
|
|
$setup_info['importexport']['description'] =
|
|
'';
|
|
$setup_info['importexport']['note'] =
|
|
'';
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
$setup_info['importexport']['hooks']['preferences'] =
|
|
$setup_info['importexport']['hooks']['admin'] =
|
|
$setup_info['importexport']['hooks']['sidebox_menu'] = 'importexport_admin_prefs_sidebox_hooks::all_hooks';
|
|
$setup_info['importexport']['hooks']['sidebox_all'] = 'importexport_admin_prefs_sidebox_hooks::other_apps';
|
|
|
|
/* Dependencies for this app to work */
|
|
$setup_info['importexport']['depends'][] = array(
|
|
'appname' => 'phpgwapi',
|
|
'versions' => Array('1.7','1.8','1.9')
|
|
);
|
|
$setup_info['importexport']['depends'][] = array(
|
|
'appname' => 'etemplate',
|
|
'versions' => Array('1.7','1.8','1.9')
|
|
);
|
|
|
|
// installation checks for importexport
|
|
$setup_info['importexport']['check_install'] = array(
|
|
'dom' => array(
|
|
'func' => 'extension_check',
|
|
),
|
|
'' => array(
|
|
'func' => 'pear_check',
|
|
),
|
|
'Console_Getopt' => array(
|
|
'func' => 'pear_check',
|
|
),
|
|
);
|
|
|
|
|