mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
85 lines
2.0 KiB
PHP
85 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - Wizard for user CSV import
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package calendar
|
|
* @subpackage importexport
|
|
* @link http://www.egroupware.org
|
|
* @author Nathan Gray
|
|
* @version $Id$
|
|
*/
|
|
|
|
use EGroupware\Api;
|
|
|
|
class calendar_wizard_import_ical
|
|
{
|
|
/**
|
|
* List of steps. Key is the function, value is the translated title.
|
|
*/
|
|
public $steps;
|
|
|
|
/**
|
|
* List of eTemplates to use for each step. You can override this with your own etemplates steps.
|
|
*/
|
|
protected $step_templates = array(
|
|
'wizard_step55' => 'calendar.import.conditions'
|
|
);
|
|
/**
|
|
* constructor
|
|
*/
|
|
function __construct()
|
|
{
|
|
$this->steps = array(
|
|
'wizard_step55' => lang('Edit conditions'),
|
|
);
|
|
}
|
|
|
|
function wizard_step50(&$content, &$sel_options, &$readonlys, &$preserv)
|
|
{
|
|
$result = parent::wizard_step50($content, $sel_options, $readonlys, $preserv);
|
|
$content['msg'] .= "\n*" ;
|
|
|
|
return $result;
|
|
}
|
|
|
|
// Conditions
|
|
function wizard_step55(&$content, &$sel_options, &$readonlys, &$preserv)
|
|
{
|
|
// return from step55
|
|
if ($content['step'] == 'wizard_step55')
|
|
{
|
|
switch (array_search('pressed', $content['button']))
|
|
{
|
|
case 'next':
|
|
return $GLOBALS['egw']->importexport_definitions_ui->get_step($content['step'],1);
|
|
case 'previous' :
|
|
return $GLOBALS['egw']->importexport_definitions_ui->get_step($content['step'],-1);
|
|
case 'finish':
|
|
return 'wizard_finish';
|
|
default :
|
|
return $this->wizard_step55($content,$sel_options,$readonlys,$preserv);
|
|
}
|
|
}
|
|
// init step30
|
|
else
|
|
{
|
|
$content['text'] = $this->steps['wizard_step55'];
|
|
$content['step'] = 'wizard_step55';
|
|
if(!$content['skip_conflicts'] && array_key_exists('skip_conflicts', $content['plugin_options']))
|
|
{
|
|
$content['skip_conflicts'] = $content['plugin_options']['skip_conflicts'];
|
|
}
|
|
$preserv = $content;
|
|
unset ($preserv['button']);
|
|
|
|
// No real conditions, but we share a template
|
|
$content['no_conditions'] = true;
|
|
|
|
return $this->step_templates[$content['step']];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|