mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Add Import / Export links to sidebox for all apps, if there are definitions allowed.
This commit is contained in:
parent
bd28fed482
commit
d413936936
@ -190,6 +190,37 @@ class idots_framework extends egw_framework
|
|||||||
|
|
||||||
if($this->sidebox_content)
|
if($this->sidebox_content)
|
||||||
{
|
{
|
||||||
|
// Add in import / export, if available
|
||||||
|
if($GLOBALS['egw_info']['user']['apps']['importexport']) {
|
||||||
|
$appname = $GLOBALS['egw_info']['flags']['currentapp'];
|
||||||
|
$file = array();
|
||||||
|
if(importexport_helper_functions::has_definitions($appname, 'import'))
|
||||||
|
{
|
||||||
|
$file['Import'] = array('link' => "javascript:egw_openWindowCentered2('".
|
||||||
|
egw::link('/index.php',array(
|
||||||
|
'menuaction' => 'importexport.importexport_import_ui.import_dialog',
|
||||||
|
'appname'=>$appname
|
||||||
|
),false)."','_blank',500,220,'yes')",
|
||||||
|
'icon' => 'import',
|
||||||
|
'app' => 'importexport',
|
||||||
|
'text' => 'import'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if(importexport_helper_functions::has_definitions($appname, 'export'))
|
||||||
|
{
|
||||||
|
$file['Export'] = array('link' => "javascript:egw_openWindowCentered2('".
|
||||||
|
egw::link('/index.php',array(
|
||||||
|
'menuaction' => 'importexport.importexport_export_ui.export_dialog',
|
||||||
|
'appname'=>$appname
|
||||||
|
),false)."','_blank',850,440,'yes')",
|
||||||
|
'icon' => 'export',
|
||||||
|
'app' => 'importexport',
|
||||||
|
'text' => 'export'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if($file) display_sidebox($appname,lang('importexport'),$file);
|
||||||
|
}
|
||||||
|
|
||||||
if($GLOBALS['egw_info']['user']['preferences']['common']['auto_hide_sidebox'])
|
if($GLOBALS['egw_info']['user']['preferences']['common']['auto_hide_sidebox'])
|
||||||
{
|
{
|
||||||
$this->tpl->set_var('lang_show_menu',lang('show menu'));
|
$this->tpl->set_var('lang_show_menu',lang('show menu'));
|
||||||
|
Loading…
Reference in New Issue
Block a user