2010-11-15 21:14:50 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eGroupWare
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package resources
|
|
|
|
* @subpackage importexport
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Nathan Gray
|
|
|
|
* @copyright Nathan Gray
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* export resources to CSV
|
|
|
|
*/
|
|
|
|
class resources_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;
|
|
|
|
|
2011-03-23 16:25:59 +01:00
|
|
|
$bo = new resources_bo();
|
2010-11-15 21:14:50 +01:00
|
|
|
$selection = array();
|
|
|
|
if ($options['selection'] == 'selected') {
|
|
|
|
// ui selection with checkbox 'selected'
|
|
|
|
$query = egw_cache::getSession('resources', 'get_rows');
|
|
|
|
$query['num_rows'] = -1; // all
|
|
|
|
unset($query['store_state']);
|
2012-03-29 14:06:10 +02:00
|
|
|
$query['csv_export'] = true; // so get_rows method _can_ produce different content or not store state in the session
|
2010-11-15 21:14:50 +01:00
|
|
|
$bo->get_rows($query,$selection,$readonlys);
|
|
|
|
}
|
|
|
|
elseif ( $options['selection'] == 'all' ) {
|
|
|
|
$query = array(
|
|
|
|
'num_rows' => -1,
|
2012-03-29 14:06:10 +02:00
|
|
|
'csv_export' => true, // so get_rows method _can_ produce different content or not store state in the session
|
2010-11-15 21:14:50 +01:00
|
|
|
); // all
|
|
|
|
$bo->get_rows($query,$selection,$readonlys);
|
|
|
|
} else {
|
|
|
|
$selection = explode(',',$options['selection']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$export_object = new importexport_export_csv($_stream, (array)$options);
|
|
|
|
$export_object->set_mapping($options['mapping']);
|
|
|
|
|
2010-11-23 19:27:14 +01:00
|
|
|
// Check if we need to load the custom fields
|
|
|
|
$need_custom = false;
|
|
|
|
foreach(config::get_customfields('resources') as $field => $settings) {
|
|
|
|
if($options['mapping']['#'.$field]) {
|
|
|
|
$need_custom = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-12-17 20:03:10 +01:00
|
|
|
$types = resources_egw_record::$types;
|
2010-11-15 21:14:50 +01:00
|
|
|
$types['select-bool'] = array('bookable');
|
|
|
|
|
|
|
|
foreach ($selection as $record) {
|
|
|
|
if(!is_array($record) || !$record['res_id']) continue;
|
|
|
|
|
2010-11-23 19:27:14 +01:00
|
|
|
if($need_custom) {
|
|
|
|
$record = $bo->read($record['res_id']);
|
|
|
|
}
|
2010-11-15 21:14:50 +01:00
|
|
|
$resource = new resources_egw_record();
|
|
|
|
$resource->set_record($record);
|
2011-04-06 01:36:40 +02:00
|
|
|
$resource->long_description = strip_tags($resource->long_description);
|
2010-11-23 00:49:40 +01:00
|
|
|
if($options['convert']) {
|
|
|
|
importexport_export_csv::convert($resource, $types, 'resources');
|
2010-12-10 23:56:02 +01:00
|
|
|
} else {
|
|
|
|
// Implode arrays, so they don't say 'Array'
|
|
|
|
foreach($resource->get_record_array() as $key => $value) {
|
|
|
|
if(is_array($value)) $resource->$key = implode(',', $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-15 21:14:50 +01:00
|
|
|
$export_object->export_record($resource);
|
|
|
|
unset($resource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns translated name of plugin
|
|
|
|
*
|
|
|
|
* @return string name
|
|
|
|
*/
|
|
|
|
public static function get_name() {
|
|
|
|
return lang('Resources CSV export');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns translated (user) description of plugin
|
|
|
|
*
|
|
|
|
* @return string descriprion
|
|
|
|
*/
|
|
|
|
public static function get_description() {
|
|
|
|
return lang("Exports a list of resources to 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.
|
|
|
|
* this way the plugin has all opportunities for options tab
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function get_options_etpl() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns selectors information
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function get_selectors_etpl() {
|
|
|
|
return array(
|
2011-03-29 00:10:59 +02:00
|
|
|
'name' => 'resources.export_csv_selectors',
|
|
|
|
'content' => 'selected'
|
2010-11-15 21:14:50 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|