2006-11-10 16:30:01 +01:00
|
|
|
<?php
|
2008-10-14 10:42:09 +02:00
|
|
|
/**
|
|
|
|
* importexport
|
|
|
|
*
|
|
|
|
* @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';
|
2010-03-22 16:09:26 +01:00
|
|
|
$setup_info['importexport']['version'] = '1.7.001';
|
2008-10-14 10:42:09 +02:00
|
|
|
$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']['license'] = 'GPL';
|
|
|
|
$setup_info['importexport']['description'] =
|
|
|
|
'';
|
|
|
|
$setup_info['importexport']['note'] =
|
|
|
|
'';
|
|
|
|
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
|
|
//$setup_info['importexport']['hooks']['preferences'] = 'importexport'.'.admin_prefs_sidebox_hooks.all_hooks';
|
|
|
|
//$setup_info['importexport']['hooks']['settings'] = 'importexport'.'.admin_prefs_sidebox_hooks.settings';
|
|
|
|
$setup_info['importexport']['hooks']['admin'] = 'importexport'.'.importexport_admin_prefs_sidebox_hooks.all_hooks';
|
|
|
|
$setup_info['importexport']['hooks']['sidebox_menu'] = 'importexport'.'.importexport_admin_prefs_sidebox_hooks.all_hooks';
|
|
|
|
//$setup_info['importexport']['hooks']['search_link'] = 'importexport'.'.bomyterra.search_link';
|
|
|
|
|
|
|
|
/* Dependencies for this app to work */
|
|
|
|
$setup_info['importexport']['depends'][] = array(
|
|
|
|
'appname' => 'phpgwapi',
|
2010-03-22 16:09:26 +01:00
|
|
|
'versions' => Array('1.6','1.7')
|
2008-10-14 10:42:09 +02:00
|
|
|
);
|
|
|
|
$setup_info['importexport']['depends'][] = array(
|
|
|
|
'appname' => 'etemplate',
|
2010-03-22 16:09:26 +01:00
|
|
|
'versions' => Array('1.6','1.7')
|
2008-10-14 10:42:09 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// installation checks for importexport
|
|
|
|
$setup_info['importexport']['check_install'] = array(
|
|
|
|
'dom' => array(
|
|
|
|
'func' => 'extension_check',
|
|
|
|
),
|
|
|
|
);
|