2006-11-10 16:30:01 +01:00
|
|
|
<?php
|
2008-10-14 10:42:09 +02:00
|
|
|
/**
|
2010-09-05 17:24:34 +02:00
|
|
|
* EGroupware - importexport
|
2008-10-14 10:42:09 +02:00
|
|
|
*
|
2010-09-05 17:24:34 +02:00
|
|
|
* @link www.egroupware.org
|
2008-10-14 10:42:09 +02:00
|
|
|
* @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';
|
2011-05-18 16:46:57 +02:00
|
|
|
$setup_info['importexport']['version'] = '1.9.003';
|
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'
|
|
|
|
);
|
2011-05-07 13:04:36 +02:00
|
|
|
$setup_info['importexport']['autoinstall'] = true; // install automatically on update
|
|
|
|
|
2008-10-14 10:42:09 +02:00
|
|
|
$setup_info['importexport']['license'] = 'GPL';
|
|
|
|
$setup_info['importexport']['description'] =
|
|
|
|
'';
|
|
|
|
$setup_info['importexport']['note'] =
|
|
|
|
'';
|
|
|
|
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
2010-07-07 19:11:10 +02:00
|
|
|
$setup_info['importexport']['hooks']['preferences'] =
|
|
|
|
$setup_info['importexport']['hooks']['admin'] =
|
|
|
|
$setup_info['importexport']['hooks']['sidebox_menu'] = 'importexport_admin_prefs_sidebox_hooks::all_hooks';
|
2011-02-03 17:32:03 +01:00
|
|
|
$setup_info['importexport']['hooks']['sidebox_all'] = 'importexport_admin_prefs_sidebox_hooks::other_apps';
|
2008-10-14 10:42:09 +02:00
|
|
|
|
|
|
|
/* Dependencies for this app to work */
|
|
|
|
$setup_info['importexport']['depends'][] = array(
|
|
|
|
'appname' => 'phpgwapi',
|
2010-09-05 17:24:34 +02:00
|
|
|
'versions' => Array('1.7','1.8','1.9')
|
2008-10-14 10:42:09 +02:00
|
|
|
);
|
|
|
|
$setup_info['importexport']['depends'][] = array(
|
|
|
|
'appname' => 'etemplate',
|
2010-09-05 17:24:34 +02:00
|
|
|
'versions' => Array('1.7','1.8','1.9')
|
2008-10-14 10:42:09 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// installation checks for importexport
|
|
|
|
$setup_info['importexport']['check_install'] = array(
|
|
|
|
'dom' => array(
|
|
|
|
'func' => 'extension_check',
|
|
|
|
),
|
|
|
|
);
|
2011-02-03 19:09:39 +01:00
|
|
|
|