Skip to content

Conversation

@swsavale
Copy link

@swsavale swsavale commented Feb 28, 2020

Generate CSV from the upgrade Helper results

$fileDirectoryPath = $this->directoryList->getPath(DirectoryList::ROOT);
$fileName = 'UpgradeHelperResult_'.date('m-d-Y').'.csv';
$filePath = $fileDirectoryPath . '/' . $fileName;
$data['headers'] = ['Patched', 'Customized', 'Reviewed (Yes / No)', 'Notes'];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's make the columns "Type", "Patched" and "Customized". The other two columns shouldn't be in the CSV output as they're unique to our review process, not generally a concern of this module.

$output->writeln('Customized: ' . $customized);
}
}
$this->csvProcessor
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we probably want something like an output flag to determine if it should be output as CSV or printed to the terminal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add CSV Output Format

2 participants