PHP code example of stephencoduor / laravel-kobo-connect
1. Go to this page and download the library: Download stephencoduor/laravel-kobo-connect library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
stephencoduor / laravel-kobo-connect example snippets
public function testForm(Stats4sd\KoboLink\Models\Submission $submission)
{
/* PROCESS SUBMISSION DATA */
/* get the submission contents */
$data = $submission->content;
// the Datamap model querying,
* - passing the submission to an external process like R or Python running on the server.
*
* Repeat groups need to be handled manually - they will be left with the 'value' as a nested json array.
**/
/* At the end, you should update the $submission entry: */
$submission->processed = 1;
/* If your processing throws errors, e.g. validation errors, you can add those to the "errors" array: */
$submission->errors = [
'variable_name' => 'Error message',
'variable_2' => 'Error message',
];
/** If your processing has created new Eloquent models, you can add those to the "entries" array.
* - This allows you to easily identify what records each submission created;
* - It is used in the 'reprocessSubmissions()' method to delete previously created entries and avoid duplication.
**/
// example, if your submission created 1 Household entry and 2 HouseholdMember entries:
$submission->entries = [
"App\Models\Household" => [$household->id],
"App\Models\HouseholdMember" => [$memberOne->id, $memberTwo->id],
];
$submission->save();
}