Let calendar import return import errors

This commit is contained in:
Nathan Gray 2010-02-27 17:31:46 +00:00
parent e377d1914c
commit 444f714020

View File

@ -81,6 +81,11 @@ class import_events_csv implements iface_import_plugin {
*/
private $user = null;
/**
* List of import errors
*/
protected $errors = array();
/**
* imports entries according to given definition object.
* @param resource $_stream
@ -132,6 +137,8 @@ class import_events_csv implements iface_import_plugin {
}
}
$this->errors = array();
while ( $record = $import_csv->get_record() ) {
// don't import empty events
@ -224,7 +231,12 @@ class import_events_csv implements iface_import_plugin {
if ( $this->dry_run ) {
print_r($_data);
} else {
return $this->bocalupdate->update( $_data, true, !$_data['modified'], $this->is_admin);
$messages = array();
$result = $this->bocalupdate->update( $_data, true, !$_data['modified'], $this->is_admin, true, $messages);
if(!$result) {
$this->errors = implode(',', $messages);
}
return $result;
}
case 'delete' :
@ -283,5 +295,17 @@ class import_events_csv implements iface_import_plugin {
// lets do it!
}
/**
* Returns errors that were encountered during importing
* Maximum of one error message per record, but you can append if you need to
*
* @return Array (
* record_# => error message
* )
*/
public function get_errors() {
return $this->errors;
}
} // end of iface_export_plugin
?>