export_fields = array('ts_id' => 'Timesheet ID') + $bo->field2label + array( 'ts_created' => 'Created', 'ts_modified'=> 'Modified' ); // Custom fields unset($this->export_fields['customfields']); $custom = Api\Storage\Customfields::get('timesheet', true); foreach($custom as $name => $data) { $this->export_fields['#'.$name] = $data['label']; } } }