How to record the time at which users viewed an intervention page or completed a particular section of the intervention: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
The logic command <code>currenttime()</code> is used to record the time. | The logic command <code>currenttime()</code> is used to record the time. | ||
===Example 1=== | ===Example 1=== |
Revision as of 17:03, 25 March 2014
The logic command currenttime()
is used to record the time.
Example 1
show session1_page10
savevalue(username, "session1time", currenttime())
show session1_endpage
The above example will save the current time (in seconds) when users click on the next button on page session1_page10.
N.B. If users see session1_endpage more than once, session1time will be saved and overwritten each time they see it. If you want to only save the time the first time session1_endpage is seen, you can add a line of hasseen logic.
savevalue(username, "session1time", currenttime()) if (not(hasseen (username, "session1_endpage")))
This logic will only save session1time if the page session1_endpage has not been seen by that user before.