mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
142 lines
3.6 KiB
PHP
142 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* eGroupWare
|
|
*
|
|
* @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
|
|
* @copyright Nathan Gray
|
|
* @version $Id$
|
|
*/
|
|
|
|
/**
|
|
* export CSV plugin of calendar
|
|
*/
|
|
class calendar_export_csv implements importexport_iface_export_plugin {
|
|
|
|
/**
|
|
* Exports records as defined in $_definition
|
|
*
|
|
* @param egw_record $_definition
|
|
*/
|
|
public function export( $_stream, importexport_definition $_definition) {
|
|
$options = $_definition->plugin_options;
|
|
$this->bo = new calendar_bo();
|
|
|
|
// Custom fields need to be specifically requested
|
|
$cfs = array();
|
|
foreach($options['mapping'] as $key => $label) {
|
|
if($key[0] == '#') $cfs[] = substr($key,1);
|
|
}
|
|
$query = array(
|
|
'start' => $options['selection']['start'],
|
|
'end' => $options['selection']['end'],
|
|
'categories' => $options['categories'] ? $options['categories'] : $options['selection']['categories'],
|
|
'enum_recuring' => false,
|
|
'daywise' => false,
|
|
'owner' => $options['owner'],
|
|
'cfs' => $cfs // Otherwise we shouldn't get any custom fields
|
|
);
|
|
$config = config::read('phpgwapi');
|
|
if($config['export_limit']) {
|
|
$query['offset'] = 0;
|
|
$query['num_rows'] = (int)$config['export_limit'];
|
|
}
|
|
$events =& $this->bo->search($query);
|
|
|
|
$export_object = new importexport_export_csv($_stream, (array)$options);
|
|
$export_object->set_mapping($options['mapping']);
|
|
$convert_fields = importexport_export_csv::$types;
|
|
$convert_fields['select-account'][] = 'owner';
|
|
$convert_fields['date-time'][] = 'start';
|
|
$convert_fields['date-time'][] = 'end';
|
|
|
|
$recurrence = $this->bo->recur_types;
|
|
|
|
// $options['selection'] is array of identifiers as this plugin doesn't
|
|
// support other selectors atm.
|
|
$record = new calendar_egw_record();
|
|
foreach ($events as $event) {
|
|
// Add in participants
|
|
if($options['mapping']['participants']) {
|
|
$event['participants'] = implode(", ",$this->bo->participants($event,true));
|
|
}
|
|
|
|
$record->set_record($event);
|
|
if($options['mapping']['recurrence']) {
|
|
$record->recurrence = $recurrence[$record->recur_type];
|
|
if($record->recur_type != MCAL_RECUR_NONE) $record->recurrence .= ' / '. $record->recur_interval;
|
|
}
|
|
|
|
// Standard stuff
|
|
if($options['convert']) {
|
|
importexport_export_csv::convert($record, $convert_fields, 'calendar');
|
|
} else {
|
|
// Implode arrays, so they don't say 'Array'
|
|
foreach($record->get_record_array() as $key => $value) {
|
|
if(is_array($value)) $record->$key = implode(',', $value);
|
|
}
|
|
}
|
|
|
|
$export_object->export_record($record);
|
|
}
|
|
unset($record);
|
|
}
|
|
|
|
/**
|
|
* returns translated name of plugin
|
|
*
|
|
* @return string name
|
|
*/
|
|
public static function get_name() {
|
|
return lang('Calendar CSV export');
|
|
}
|
|
|
|
/**
|
|
* returns translated (user) description of plugin
|
|
*
|
|
* @return string descriprion
|
|
*/
|
|
public static function get_description() {
|
|
return lang("Exports events from your Calendar into a CSV File.");
|
|
}
|
|
|
|
/**
|
|
* retruns file suffix for exported file
|
|
*
|
|
* @return string suffix
|
|
*/
|
|
public static function get_filesuffix() {
|
|
return 'csv';
|
|
}
|
|
|
|
public static function get_mimetype() {
|
|
return 'text/csv';
|
|
}
|
|
|
|
/**
|
|
* return html for options.
|
|
*
|
|
*/
|
|
public function get_options_etpl() {
|
|
}
|
|
|
|
/**
|
|
* returns selectors of this plugin
|
|
*
|
|
*/
|
|
public function get_selectors_etpl() {
|
|
$states = $GLOBALS['egw']->session->appsession('session_data','calendar');
|
|
return array(
|
|
'name' => 'calendar.export_csv_select',
|
|
'content' => array(
|
|
'start' => time(),
|
|
'end' => time(),
|
|
'owner' => $states['owner']
|
|
)
|
|
);
|
|
}
|
|
}
|