PHP Modules to Extract from Spreadsheets, Transform to QM Format, and Load to the QM Measurements Table
- Add
require_onceentry in/PHPConvert/ConverterManager.php - Add an instance of your converter to the array of converters
- Browse to
/PHPConnect - Open
ConverterManager.php - Add the line
require_once 'Converters/MyFitnessCompanionConverter.php'; - Add the line
$this->converters[] = new MyFitnessCompanionConverter();in the constructor
- Add
require_onceentry in/PHPConvert/ReaderManager.php - Add an instance of your reader to the array of reader, make sure the CSVReader is last
- Browse to
/PHPConnect - Open
ReaderManager.php - Add the line
require_once 'Readers/SQLiteReader.php'; - Add the line
$this->converters[] = new SQLiteReader();in the constructor, before CSVReader
Here's HTML export example:
Here's a spreadsheet export example:
Any non-existent variables should be created in the medications category.