-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseizure.object.php
70 lines (69 loc) · 1.87 KB
/
seizure.object.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
// Create the giant seizure object for adding a new blank seizure via the SeizureTracker API
$new_seizure = (object) array(
'Patient_ID' => $user,
'Date_Time' => $api->timestamp,
'length_hr' => 0,
'length_min' => 0,
'length_sec' => 0,
'MarkedTimeA' => '',
'VNSProfileDate_Active' => '',
'VNS_MagnetUsed' => '',
'VNS_UsedBy' => '',
'VNS_NumTimesUsed' => '',
'VNS_StoppedSeizure' => '',
'VNS_DecreasedIntensity' => '',
'VNS_DecreasedAfterEffects' => '',
'flagged' => '',
'youtubeurl' => '',
'youtubeThumbnail' => '',
'localVideoPath' => '',
'type' => 'Unknown',
'type_ISSpasmNum' => '',
'type_ISSeverity' => '',
'MyoClusterCount' => '',
'triggermood' => 'Normal',
'triggerchangeinmed' => '',
'triggertired' => '',
'triggerdiet' => '',
'triggerAlcDruguse' => '',
'triggerlight' => '',
'triggerstress' => '',
'triggeroverheated' => '',
'triggerhormonal' => '',
'triggersick' => '',
'triggersickdescript' => '',
'triggerother' => '',
'triggerothervalue' => '',
'triggernotes' => '',
'PersonalDescriptNum' => '',
'PersonalDescriptLabel' => '',
'descriptaura' => '',
'descriptawareness' => '',
'descripturinebowel' => '',
'descriptlosscomm' => '',
'descriptautomove' => '',
'descriptmusstiff' => '',
'descriptmuscstiffvalue' => '',
'descriptmustwitch' => '',
'descriptmustwitval' => '',
'descriptother' => '',
'descriptothervalue' => '',
'descriptnotes' => '',
'postlosscommuni' => '',
'posteventrecalection' => '',
'postmusweakness' => '',
'postsleepy' => '',
'postother' => '',
'postothervalue' => '',
'postnotes' => '',
'OTCM' => '',
'LogTriggers' => 'Yes',
'DescriptType' => 'SSD',
'LogPostDescript' => 'Yes',
'DateTimeEntered' => $api->timestamp,
'EventLocationLNG' => '',
'EventLocationLAT' => '',
'GUID' => '',
'LastUpdated' => $api->timestamp
);