mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-12 17:08:34 +01:00
Remove unused preferred export definition preference
This commit is contained in:
parent
1b669b1405
commit
11e145967e
@ -657,47 +657,7 @@ class calendar_hooks
|
|||||||
'default' => '/templates/calendar',
|
'default' => '/templates/calendar',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// Import / Export for nextmatch
|
|
||||||
if ($GLOBALS['egw_info']['user']['apps']['importexport'])
|
|
||||||
{
|
|
||||||
$definitions = new importexport_definitions_bo(array(
|
|
||||||
'type' => 'export',
|
|
||||||
'application' => 'calendar'
|
|
||||||
));
|
|
||||||
$options = array(
|
|
||||||
'~nextmatch~' => lang('Old fixed definition')
|
|
||||||
);
|
|
||||||
foreach ((array)$definitions->get_definitions() as $identifier)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
$definition = new importexport_definition($identifier);
|
|
||||||
}
|
|
||||||
catch (Exception $e)
|
|
||||||
{
|
|
||||||
unset($e); // not used
|
|
||||||
// permission error
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (($title = $definition->get_title()))
|
|
||||||
{
|
|
||||||
$options[$title] = $title;
|
|
||||||
}
|
|
||||||
unset($definition);
|
|
||||||
}
|
|
||||||
$default_def = 'export-calendar-csv';
|
|
||||||
$settings['nextmatch-export-definition'] = array(
|
|
||||||
'type' => 'select',
|
|
||||||
'values' => $options,
|
|
||||||
'label' => 'Export definition to use for nextmatch export',
|
|
||||||
'name' => 'nextmatch-export-definition',
|
|
||||||
'help' => lang('If you specify an export definition, it will be used when you export'),
|
|
||||||
'run_lang' => false,
|
|
||||||
'xmlrpc' => True,
|
|
||||||
'admin' => False,
|
|
||||||
'default'=> isset($options[$default_def]) ? $default_def : false,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$settings += array(
|
$settings += array(
|
||||||
'export_timezone' => array(
|
'export_timezone' => array(
|
||||||
'type' => 'select',
|
'type' => 'select',
|
||||||
|
@ -197,41 +197,6 @@ class filemanager_hooks
|
|||||||
'default' => '/templates/filemanager',
|
'default' => '/templates/filemanager',
|
||||||
);
|
);
|
||||||
|
|
||||||
// Import / Export for nextmatch
|
|
||||||
if ($GLOBALS['egw_info']['user']['apps']['importexport'])
|
|
||||||
{
|
|
||||||
$definitions = new importexport_definitions_bo(array(
|
|
||||||
'type' => 'export',
|
|
||||||
'application' => 'filemanager'
|
|
||||||
));
|
|
||||||
$options = array();
|
|
||||||
foreach ((array)$definitions->get_definitions() as $identifier)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$definition = new importexport_definition($identifier);
|
|
||||||
}
|
|
||||||
catch (Exception $e) {
|
|
||||||
unset($e);
|
|
||||||
// permission error
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (($title = $definition->get_title()))
|
|
||||||
{
|
|
||||||
$options[$title] = $title;
|
|
||||||
}
|
|
||||||
unset($definition);
|
|
||||||
}
|
|
||||||
$settings['nextmatch-export-definition'] = array(
|
|
||||||
'type' => 'select',
|
|
||||||
'values' => $options,
|
|
||||||
'label' => 'Export definition to use for nextmatch export',
|
|
||||||
'name' => 'nextmatch-export-definition',
|
|
||||||
'help' => lang('If you specify an export definition, it will be used when you export'),
|
|
||||||
'run_lang' => false,
|
|
||||||
'xmlrpc' => True,
|
|
||||||
'admin' => False,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$editorLink = self::getEditorLink();
|
$editorLink = self::getEditorLink();
|
||||||
$mimes = array();
|
$mimes = array();
|
||||||
|
|
||||||
|
@ -74,10 +74,6 @@ class importexport_export_ui {
|
|||||||
$et->setElementAttribute('select_definition','disabled',true);
|
$et->setElementAttribute('select_definition','disabled',true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for preferred definition
|
|
||||||
if(!$_definition && $_appname) {
|
|
||||||
$_definition = $GLOBALS['egw_info']['user']['preferences'][$_appname]['nextmatch-export-definition'];
|
|
||||||
}
|
|
||||||
// fill definitions
|
// fill definitions
|
||||||
$sel_options['definition'] = array('' => lang('Select'));
|
$sel_options['definition'] = array('' => lang('Select'));
|
||||||
$definitions = new importexport_definitions_bo(array(
|
$definitions = new importexport_definitions_bo(array(
|
||||||
|
@ -420,47 +420,6 @@ class infolog_hooks
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Import / Export for nextmatch
|
|
||||||
if ($GLOBALS['egw_info']['user']['apps']['importexport'])
|
|
||||||
{
|
|
||||||
$definitions = new importexport_definitions_bo(array(
|
|
||||||
'type' => 'export',
|
|
||||||
'application' => 'infolog'
|
|
||||||
));
|
|
||||||
$options = array(
|
|
||||||
'~nextmatch~' => lang('Old fixed definition')
|
|
||||||
);
|
|
||||||
foreach ((array)$definitions->get_definitions() as $identifier)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
$definition = new importexport_definition($identifier);
|
|
||||||
}
|
|
||||||
catch (Exception $e)
|
|
||||||
{
|
|
||||||
unset($e);
|
|
||||||
// permission error
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (($title = $definition->get_title()))
|
|
||||||
{
|
|
||||||
$options[$title] = $title;
|
|
||||||
}
|
|
||||||
unset($definition);
|
|
||||||
}
|
|
||||||
$default_def = 'export-infolog';
|
|
||||||
$settings['nextmatch-export-definition'] = array(
|
|
||||||
'type' => 'select',
|
|
||||||
'values' => $options,
|
|
||||||
'label' => 'Export definition to use for nextmatch export',
|
|
||||||
'name' => 'nextmatch-export-definition',
|
|
||||||
'help' => lang('If you specify an export definition, it will be used when you export'),
|
|
||||||
'run_lang' => false,
|
|
||||||
'xmlrpc' => True,
|
|
||||||
'admin' => False,
|
|
||||||
'default'=> isset($options[$default_def]) ? $default_def : false,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if ($GLOBALS['egw_info']['user']['apps']['calendar'])
|
if ($GLOBALS['egw_info']['user']['apps']['calendar'])
|
||||||
{
|
{
|
||||||
$settings['cal_show'] = array(
|
$settings['cal_show'] = array(
|
||||||
|
@ -202,47 +202,6 @@ class timesheet_hooks
|
|||||||
'default' => '/templates/timesheet',
|
'default' => '/templates/timesheet',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// Import / Export for nextmatch
|
|
||||||
if ($GLOBALS['egw_info']['user']['apps']['importexport'])
|
|
||||||
{
|
|
||||||
$definitions = new importexport_definitions_bo(array(
|
|
||||||
'type' => 'export',
|
|
||||||
'application' => 'timesheet'
|
|
||||||
));
|
|
||||||
$options = array(
|
|
||||||
'~nextmatch~' => lang('Old fixed definition')
|
|
||||||
);
|
|
||||||
foreach ((array)$definitions->get_definitions() as $identifier)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
$definition = new importexport_definition($identifier);
|
|
||||||
}
|
|
||||||
catch (Exception $e)
|
|
||||||
{
|
|
||||||
unset($e);
|
|
||||||
// permission error
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (($title = $definition->get_title()))
|
|
||||||
{
|
|
||||||
$options[$title] = $title;
|
|
||||||
}
|
|
||||||
unset($definition);
|
|
||||||
}
|
|
||||||
$default_def = 'export-timesheet';
|
|
||||||
$settings['nextmatch-export-definition'] = array(
|
|
||||||
'type' => 'select',
|
|
||||||
'values' => $options,
|
|
||||||
'label' => 'Export definition to use for nextmatch export',
|
|
||||||
'name' => 'nextmatch-export-definition',
|
|
||||||
'help' => lang('If you specify an export definition, it will be used when you export'),
|
|
||||||
'run_lang' => false,
|
|
||||||
'xmlrpc' => True,
|
|
||||||
'admin' => False,
|
|
||||||
'default'=> isset($options[$default_def]) ? $default_def : false,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $settings;
|
return $settings;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user