😎
<?php
...
/**
* Parse pdf schedules into json
*
* Data derived from the json schedules are used
* when the user of the application schedules assignments
* and for writing out assignment forms
*/
createJsonSchedulesFromWorkbooks(
$WorkbookParser,
$path_to_workbooks,
$path_to_data,
jsonScheduleCreationNotification()
);
/**
* Create assignment forms.
*
* The json files representing weeks of assignments are used
* to generate pdf assignment forms.
*/
writeAssignmentForms(
$AssignmentFormWriter,
$path_to_json_assignments,
$path_to_json_schedules,
$hasScheduleAlreadyBeenCompleted,
false
);
- Create Command Line Tool
- [] Add CLI configuration
- [] Create Web Interface
- Write test
Please get in touch