if (!isset($time0)) {
$time0 = time();
registerVariable('$time0'); // store variable $time0 after the end of the PHP code as well
}
// Check if time has already expired
// (e.g. because the participant reloaded the page)
$timer = 60; // participant has 1 minute (60 seconds) to work through the page
if (time() >= $time0 + $timer) {
goToPage('next');
}
// JavaScript code has to be told the time remaining
$remain = $time0 + $timer - time();
replace('%remain%', $remain);
**Note:** If you want to use multiple, independent timers in the questionnaire, the variable ''$time0'' in the PHP code has to be called something different each time. The name of the variable also has to be changed in the ''registerVariable()'' command -- therefore, a total of 5 times.
**Different language versions:** Use the translation support tool and copy-paste the suppression of the "next" button into the different language versions.
If the participant is able to restart the timer by reloading the page or using the "Back" button, you can reduce the PHP code to one line (not recommended). However, this variant will not work if you want to let the timer to run over several pages.
replace('%remain%', 60); // participant has 1 minute (60 seconds) to work through the page
For the actual timer, create a new text module in the **Question catalog** in a section with **New text** __or__ under **Text modules and labeling**.
For the //Display//, please set "HTML code". Then insert the following content.
Some of the JavaScript sections are marked as //optional//. These sections can be removed where necessary.
After saving, drag this text module directly below the PHP code onto the questionnaire page.
**Note:** If you want to display a message after the timer has expired using ''alert()'', the time taken to close the message will appear in the dwell time in the data record. The dwell time that is saved is therefore higher than the timer actually for the participant to be on the page.
Initialization of the forwarding will only be carried out once the questionnaire page has been fully loaded (''onload''). There are two reasons for this: first of all, the loading time is considered in the actual dwell time, and the reason being that the "next" button can only be hidden once the page has been fully loaded.
**Note:** Please remember to drag the text element with the JavaScript onto the questionnaire page -- and do so below the PHP code.
Now insert text elements and/or questions to be shown in the questionnaire underneath the PHP and JavaScript codes. Positioning them below the PHP code is important to ensure the filter works properly if time has already expired.
**Multilingual versions:** If you use different languages for the questionnaire, use the translation help tool (under language versions) and copy the code for the timer into the different language versions.
===== Display Countdown =====
You can show the participant how much time they have left to work through the page. Insert the following HTML code onto the questionnaire page to do so (either in a text element, directly in a question or in a HTML code element).
Remaining time:
Expanding the JavaScript code a little also has to be done in addition to this.
===== Timer Across Several Pages =====
The above code -- it does not matter whether it has a visible countdown or not -- is also suitable for letting a timer run across several pages in the questionnaire. The "next" button, however, must not be hidden. Where required, remove the following lines from the JavaScript:
// Hide Next button (optional)
SoSciTools.submitButtonsHide();
You can omit the ''isset()'' part from the PHP code on the following pages, although this does not interfere with anything.
// Check whether time has already expired
$timer = 60; // participant has 1 minute (60 seconds) to work through the page
if (time() >= $time0 + $timer) {
goToPage('next');
}
// The JavaScript code has to be told the time remaining
$remain = $time0 + $timer - time();
replace('%remain%', $remain);
Place the text element with the JavaScript on the second page below the PHP code, and the questions beneath this.
**Restriction:** Loading times occured between questionnaire pages are deducted from the participant's dwell time. Conversely, the participant gets given a maximum of one second due to rounding errors.