mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
d4be70de5a
- Use new hook to load importexport's filter widget - Remove some typos & error_log()s
61 lines
1.9 KiB
PHP
61 lines
1.9 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']['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';
|
|
$setup_info['importexport']['hooks']['etemplate2_register_widgets'] = 'importexport_admin_prefs_sidebox_hooks::widgets';
|
|
|
|
/* 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',
|
|
),
|
|
);
|
|
|
|
|