egroupware_official/importexport/setup/setup.inc.php
Nathan Gray 0a91bc5aa9 Add support for filtering records to be exported.
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.
2012-12-31 20:36:28 +00:00

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',
),
);