Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate CSV from the upgrade helper results #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

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('Patched: ' . $patched);
$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