Logic Dictionary: Difference between revisions
KirstenSmith (talk | contribs) |
KirstenSmith (talk | contribs) |
||
Line 1,010: | Line 1,010: | ||
| K || Hour in A.M./P.M. (0~11) || 10 | | K || Hour in A.M./P.M. (0~11) || 10 | ||
|} | |} | ||
For digits, e.g. minutes, '''use the number of letters for the number of digits you want to display'''. For example, '''9:01:07''' should be written as <code>h:mm:ss</code> | |||
''Advanced users, please see more options on [http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html#month Java SimpleDateFormat].'' | |||
<code>printtime</code> cannot be used to display the difference between 2 times if the difference is greater than 1 day. To display the difference between 2 times, use <code>comparetimes</code> (see [[#comparetimes]], Example 2). | <code>printtime</code> cannot be used to display the difference between 2 times if the difference is greater than 1 day. To display the difference between 2 times, use <code>comparetimes</code> (see [[#comparetimes]], Example 2). |
Revision as of 15:21, 10 May 2017
A quick reference guide to LifeGuide logic. For more detailed information, please refer to the How to... Guide.
It is important to insert Next buttons on your pages (instead of Jump buttons) whenever possible in order for your logic to work correctly. If you show a page and have a vital line of logic written after you show that page (such as randomisation or saving logic), or have error messages on that page, your intervention will not work correctly if you use a Jump button - you will jump to another page and skip parts of the logic in your logic file and Error Messages section.
A
add
This may also be written as sum or +. The add command is used when performing calculations in the logic. It is used to add together more than two values.
Example 1
This can be used to perform a calculation using the end-user's responses to specific numeric value interactions:
set score1 to add (page1.interaction1, page1.interaction2, page1.interaction3)
Example 2
The add or sum commands can also be used to calculate variables that have been set earlier in the session:
set overallscore to sum (score1, score2, score3)
For simple addition or subtract calculations +
and -
can be used normally.
For example:
set score to (100 - page1.interaction1)
Make sure you leave a space between the numbers/variables and the subtraction symbol.
after
The after command is used after a page to perform functions that relate to that page.
It is likely that you will use this command quite regularly in your intervention logic. The most common way of using the after command is with the if and goto commands, e.g.
show page1
after page1 if (any_commands_you_want_to_relate_to_this_page) goto page3
Example 1
after page1 if (page1.interaction1 = "yes") goto page3
show page 2
show page3
In the above example, the end-user will be directed to page3 if they have answered yes to interaction1 on page1. If they answer no to interaction1, they will be directed to the next line of logic and will see page2.
NB If you use the after
command with the goto
command, the page that you goto should NOT be the next page shown in your logic, it should be a page further down in your logic as in the example above.
As will be seen throughout this dictionary, any command can be used with the after command.
and
Can also be written as &&.
The and command can be used for a number of reasons:
- If there is more than one response that is involved in presenting tailored advice to end-users, i.e. if one response and another response is needed to show feedback to an end-user.
- If you need to perform a number of logic commands after a page
Example 1
show page6 if (and(page3.exercise = "yes", page3.intensity = "moderate", page3.frequency = "three"))
End-users will be shown page6 if they selected yes to the interaction exercise on page3, moderate to the interaction intensity on page3 and three to the interaction frequency on page3.
Example 2
after login_successful if (and( not(hasseen(username, "q_demographics")), (isempty (loadvalue(username, "baselinecomplete"))) )) goto q_intro
End-users will be shown q_intro if they have not seen page q_demographics and if the variable baselinecomplete is empty (i.e. the variable baselinecomplete hasn't been saved because the end-user hasn't finished the baseline questionnaire).
append
The append
command allows you to attach logic commands together, and/or to attach a variable to a string (a string is something that you create - a sequence of characters between quotation marks, e.g. "session1".
append
is most often used with the logic commands sendemail
and cancelemail
Example 1
sendemail (append(username,"user_reg1"), username, "StressLess - Session 1 is ready", append("Dear ", loadvalue (username, "personsname"), "\n\n", reg_part1, reg_part2), 10)
In this example, append is used to attach:
- a username (which has been set in a previous part of the logic) to the unique name of the email message:
append (username,"user_reg1")
- a user's name to the text used in an email message (the append function here allows the content of the email message to be made of different parts):
append ("Dear ", loadvalue (username, "personsname"), "\n\n", reg_part1, reg_part2)
The \n\n in the logic above means a new line in the email message content.
Example 2
cancelemail (append("user_regs2rem", username), username)
In this example, append is used to attach:
- a username to the unique name of the email message:
append ("user_regs1", username)
Example 3
Append is not only useful for emails. It can be used to combine interactions and other parts of text and save values. For example:
set fullname to append(registration.firstname, " ",registration.surname)
savevalue(username,"fullname", fullname)
This code takes the interaction items "firstname" and "surname" from the registration page and combines them into a fullname.
Important: When you use append in this way, make sure you add a string i.e. a letter, number or space in quotation marks like "a" or it may not work!
Example 4
In this example, we add information to a previously saved value:
savevalue(username, "oldgoals","RESULTS_") if isempty(loadvalue(username,"oldgoals"))
set oldgoals to loadvalue(username,"oldgoals")
savevalue(username, "oldgoals", (append(oldgoals,"_", printtime(currenttime(),"dMy"),"_", goalsetpage.newgoal)))
First, we create the variable "oldgoals" and save it if it doesn't exist. We then set oldgoals to load this value. Lastly, we save the value oldgoals again, appending the old value of "oldgoals", adding the date the new value is being added and adding the value of the newgoal set on the page "goalsetpage". Underscores are used to separate the data and make it more readable. This will create a user variable like this, that gets longer over time:
"RESULTS_181016_firstgoal_191016_secondgoal_221016_thirdgoal"
authenticateuser
This is important logic for ensuring that a user is registered with the intervention and is written directly after the show login logic. This logic should be used with the makenewuser
logic function, which creates a new user.
The authenticateuser
command can be used in the logic (intervention.lgil) file or in the Error Message logic.
Example 1
show login
after login if (authenticateuser (login.username, login.password)) goto login_confirmation
show login_fail
show login_confirmation
The logic in this example is written in the logic file. The details that the end-user enters into the username and password interactions on the login p
Example 2
after page1 if (or( page1.exercise contains "1day", page1.exercise contains "2days" )) goto page4
An end-user will be shown page4 if they selected 1day or 2days to the interaction exercise on page1.
countif
This command can be used to count how many interactions an end-user has filled in.
Example
after page1 if (countif (not (isempty (page1.interaction1))), (not (isempty (page1.interaction2))), (not (isempty (page1.interaction3))), (not (isempty (page1.interaction4)))) <3) goto page4
This example counts how many interactions on page1 that the enduser fills in. If they respond to less than 3 of the interactions they will be directed to page4 of the interaction.
currenttime
This command instructs the intervention logic to load or save the time as it is at that particular moment.
The currenttime
function can be used to create new variables which save the time at which users completed a particular session of the intervention.
1. In your logic, you will first need to create a new variable (e.g. “username”) which will tell the intervention which particular user a time is being saved for:
Example 1
This will begin session1, show page1 and page2, and will end session1. All the pages related to session1 (page1 and page2) are between begin session1 and end.
Example 2 – Beginning and ending a section within another section
This will begin the section stress.
The section causes will then begin and page1 and page2 in the section causes will be shown.
The first Used to cancel an email that has been set up earlier in the logic.
You may want to:
This command uses the same basic formula:
Example 1
This will cancel the email email_session2r for an end-user. The append function links an end-user's username to the name of the email (email_session2r) to give each email a unique name.
Example 2
This will cancel the email q1_notcomplete that was due to be sent to study@test.ac.uk. The append function links an end-users username to the name of the email (q1_notcompleteto) to give each email a unique name.
This command cancels an SMS message that has already been set up earlier on in the logic.
It uses a similar basic formula that is used for cancelling emails except it uses the Enables end-users to change their password.
Please see the LifeGuide Community Website for a tutorial intervention that shows how to create the pages and write the logic for this.
Example 1
This will allow a password to be changed if the old password is correctly entered into the interaction called old on page passworddetails, and a new password is entered into the interaction called new on page passworddetails.
Checks that the e-mail address a user has entered contains an @ symbol.
This command is used with an error message and is written in the Error Messages tab (please refer to Adding Error Messages for information about writing error messages).
Example 1
invalidemail is the name of an error message and email is the name of the interaction on this page where the end-user would enter their e-mail address.
Checks that the mobile number a user has entered begins with +44 or '0.
This command is used with an error message (please see Adding error messages for more information.
Example 1
In this example invalidnumber is the name of the error message and phone is the name of the interaction on this page where the end-user would enter their phone number.
Please note that this logic is only set up to work with UK based numbers. Researchers will need to create their own error messages to check the correct numbers are entered for international numbers.
This command checks whether an email address or username has already been registered with the intervention (i.e. if the details that have been entered are already registered with another user). This command is often used with an error message (please see the How to guide for details on how to write error messages)
Example 1
In this example registeredemail is the name of the error message that would show if a user enters an email address that has already been registered in the text box called email.
This command can be used to compare two points in time. It can also be used to convert a number of seconds to days, hours, minutes and seconds (see Example 2).
Example 1
This example shows how (For this logic to work, you will need to have already created login and signup pages, which contain text-entry interactions to allow end-users to enter their email address and password)
This tells the intervention that the user can continue to the end of the website if the difference between the current time, and the time the user completed session4, is more than or equal to two minutes. This line tells the intervention that the user can continue to session4 of the intervention if it has been at least two minutes since they completed session3
This line of logic tells the intervention that the user cannot continue to session 4 because it has been less than two minutes since they completed session 3. Users are directed to a “waitpage” instead.
Repeat this process for the various sessions or pages contained within your intervention, for which you want to control access. The variables Using the So, in this example, the intervention compares the time at which the user completed a given section of the intervention, with the current time, to determine whether enough time has elapsed to allow them to continue on to the next session.
In this example we use This logic first uses We need to set the number of days to the total number of days minus the days in the weeks that we have already counted, so that the number of days is less than 7. We do the same for hours and minutes.
For seconds, we simply calculate the difference between christmas and now and subtract the total number seconds in minutes that we have already set. You don't need to use To display the time between now and Christmas on a page, the following logic can be used:
Used with multiple-choice interactions. It is used to show tailored information based on a specific response an end-user has given.
Example 1
In this example, the end-user will be directed to page4 if they had selected none to the interaction exercise on page1.
An end-user will be shown page4 if they selected 1day or 2days to the interaction exercise on page1.
This command can be used to count how many interactions an end-user has filled in.
Example
This example counts how many interactions on page1 that the enduser fills in. If they respond to less than 3 of the interactions they will be directed to page4 of the interaction.
This command instructs the intervention logic to load or save the time as it is at that particular moment.
The 1. In your logic, you will first need to create a new variable (e.g. “username”) which will tell the intervention which particular user a time is being saved for:
(For this logic to work, you will need to have already created “login”, “signup” pages which contain free text interactions to allow the user to enter their name or other identifier such as an email address – see also 1.12 set)
2. Using the “username” variable you have just created, you can then save the time at which each user completes a particular section of your intervention, in this case ‘session 3’:
Here, the logic instructs the intervention to save the time at the particular moment a user completes the session 3 page. The saved time is represented as a new variable called 3. The This line tells the intervention that the user can continue to session 4 of the intervention if it has been at least two hours since they completed session 3
This line of logic tells the intervention that the user cannot continue to session 4 because it has been less than two hours since they completed session 3. Users are directed to a “waitpage” instead.
You may have noticed that the This command will round a number to a specified number of decimal places. For example, it would round 6.6666666 to 6.67 if 2 decimal places was selected or 6.6667 for 4 decimal places. If you want to round a number to 0 decimal places (i.e. you want a whole number), the simpler You cannot use Example 1
In this example we shorten a long decimal number to 4 decimal places.
This will set the value of In this example we calculate the area of a circle and return the answer to 2 decimal places.
Firstly we get the radius from the user's interaction on Then we set the value of pi.
Then we calculate the area of the circle using the formula area=pi*(radius*radius).
We then shorten the value back to 2 decimal places. We still have the full value stored in case we want to calculate things with it later on - like the volume of a cylinder.
On This is used to set an interaction element to a previously saved value. This is used in conjunction with the To recall information from the same page, use the The symbol Example 1
score1 would be the result of dividing the response given in interaction1 by the response given in interaction2.
Example 2
In this example, overallscore is calculated by dividing score1 by score2, where score1 and score2 have already been calculated elsewhere in the logic.
This page checks if both the interactions on page1 have been answered. If they have, page1_complete is set to 1. The Please see The This function gives you the database ID for a user, which is a number that is unique to each LifeGuide server. This number is automatically generated and can be used to uniquely identify a user without having to refer to their identifier (i.e. username). This number can also be included in your data export by ticking the User Number box when you export your data.
Example 1
The The This key command always follows the same formula and requires users to set up a user account.
Another line of logic is then needed for the page where the graph occurs. This will also always follow the same formula:
Here, pagename.graph-1 is the automatically generated name of the graph that has been put on the page where the graph occurs.
Example1
In this example the number entered in the interaction ‘kg’ on the page ‘progresschart’ will be used as the data for the “weight” variable for the graph. The variable username has been set earlier in the logic as the unique identifier for the end-user (see the Later in the logic the following line is needed after the page where the graph occurs:
A full tutorial for using graphs will soon be available.
Tip - if you have more than one session in your intervention, we recommend that you use savevalue and loadvalue instead of hasseen as these values can be edited after your intervention has gone live (this is useful in case something goes wrong in your intervention).
Example 1
If you wanted to show end-users a different page each time they logged in depending on what sessions they had seen before you may use the hasseen command like so:
This would mean that the first time they login they would see the page s1welcome. The next time they log in, because they have already seen the s1welcome page, the logic will skip that line and show s2welcome because they have not yet seen the s2welcome page.
Example 2
The hasseen logic can also be used without For example, you may want to show a page only if an end-user has seen a previous page.
You can use the hasseen logic in one of three ways:
This will show the end-user interaction1 if they have seen session1final in any session EXCEPT the one they are currently in (i.e. in previous sessions only).
Adding true to the hasseen command will show interaction1 if the end-user has seen session1final in ANY session, INCLUDING the current one.
Adding this to the hasseen command will show interaction1 if the end-user has seen session1final in the current session ONLY.
The primary use for The This command checks whether a response has been given to an interaction (i.e. if a response has not been given, the interaction isempty).
Example1
The end-user would be directed to page4 if they did not enter anything in interaction1 on page1.
Example2
If the end-user does not enter anything in interaction1 on page1, the variable none will be set.
Please see the The loadvalue command is always used with the savevalue command. It loads the value that you have previously saved. Please see the savevalue command for more details.
The symbol This command is used when
Example 1
The symbol This command is used in the same way as lessthan. It is used when:
Example 1
The Example
In the example above, the information the end-user enters into the interactions 'signup_username' and 'signup_password' is used to create a user account.
Important: the password interaction should always be set to a 'password' interaction type in the properties panel. If it is not set correctly, the password will be visible while you type it and will not be securely encoded when it is saved. This will result in users being unable to log on.
This sets a variable called delay7am to the time at midnight plus 25200 minus the time now.
For example, on 2/9/2016 at 10:30am, this would be 1472774400 + 25200 + (-1 X 1472812200) = -12600
This logic can be set anywhere in your logic file, but ideally place it at the start of the intervention file with other 'set' logic or immediately before the delay7am can be replaced with a word of your choice. 25200 is the number of seconds since midnight (in this case 25200 = 7 hours = 7am).
Your email logic will then look similar to this:
You will need to add at least one day (in seconds) to delay7am, as if the time is set after 7am, delay7am will be a negative number. In the above example, 1 week is added.
Please note that you will have to take in to consideration time differences in the UK between GMT and BST, and also time differences between the UK and other countries if you are using this function.
The symbol This command is used when performing calculations in the logic to check if one value is higher than another.
Example 1
condition2 will be set if the value selected for interaction1 is greater than the value selected for interaction2.
The symbol This command is used when performing calculations in the logic to check if one value is more than or equal to another.
Example 1
condition2 will be set if interaction1 is greater than or equal to interaction2.
The symbol This command is used when performing calculations to multiply one value by another. It may be taken from:
Example 1
This is taken from an end-user's response to an interaction. The response to interaction1 is multiplied by the response to interaction2 and set as score1.
Example 2
This is taken from a calculation performed elsewhere in the logic (score1 and score2 have been set previously in the logic). score1 is multiplied by score2 and set as overallscore
This command will re-show a page you have already shown.
For example, if you had a page that you need to keep showing back to your end-users, you could use the Example 1
[etc, etc]
[etc, etc]
The Example 1
condition1 would be set for this user if they did not select yes for interaction1. We can then use this condition to tailor the rest of the intervention.
Note: When using not with interactions, do not confuse Examples 2 and 3:
Or:
Also written as ||.
The Example 1
This will show page3 if none or sometimes is selected as the response to interaction1 on page1.
Example 2
This will save the variable sport if running is selected for interaction1 on page1 OR if swimming is selected for interaction2 on page2.
The Example 1
This function may be useful if you have assigned each participant in your study a different code which they will need to enter in order to take part. This will ensure that only users who have been invited to use the intervention can gain access to it. To do this, you will need to write an error message on the page which contains your text entry interaction e.g.
In this example, the error message named nomatch will be shown to users if they enter a string of characters in the text entry interaction named password which does not fit with the pattern specified in the square brackets.
The string of characters needed in this example is studyxxidxx, where x is any number between 0 and 9.
See also Adding Error Messages (example 7).
Example 2
The In this example, if users enter the string xxaxx, where x represents a number between 0 and 9 they will see page 1 of the intervention. If they enter the string xxbxx they will see page 2 of the intervention.
NB The This command can be used to instruct the intervention to display a particular time or date to the user. It can display the time in many different ways, using letters to display them.
The letters that can be used to display time are:
Advanced users, please see more options on Java SimpleDateFormat.
This example shows how you can use the In this example, the word 'time' on the page called 'welcome' has been set as a variable. This logic tells the intervention to display the hour, minute, day, month, and year at which the user is shown the page named 'welcome' in place of the word 'time'.
This example shows you how to add words into To add words and values in between the printtime special letters, use single quotes. Any printtime output can be stored or saved as a user variable, but numbers will always be stored as text and cannot be used in calculations.
This example shows how you can use the The first part of this logic tells the intervention to set up an account for the user using the username (signup.name) and password (signup.password) they created (see makenewuser). The second part of this logic uses the This logic tells the intervention to display the time/date a user signed up to the intervention on the page named 'welcome' in place of the word 'signuptime'.
This first part of this logic uses the previously created variable The second part of this logic uses the This logic tells the intervention to display the time a particular user first signed up to the intervention In this example, a time that was saved in a previous session is loaded and 1 week (in seconds) added to it:
The output of this might be Tue, 09/08/2016, a week after the time that the goal was set.
This command allows you to randomise your users into different groups and always follows the same formula:
For example:
Thus, users that are randomised to group 1 will be directed to page3. Those that are randomised to group 0 will carry on to page2.
A full tutorial for randomisation is available in the LifeGuide Researcher Help Manual.
This command replaces text in a string (a string is a variable that you create - it appears in blue in the logic file).
Example 1
This would replace all the c's in the string to b's. So this would change caked car to baked bar.
Example 2
This example shows a workaround for showing responses to a single-choice interaction back to the user. A workaround is needed because the Unique Response Name (not the Response text) is saved and shown to the user when a single-choice drop-down interaction is used.
This example is specific to a drop-down single-choice interaction, where you want to show the response selected for the interaction home on page s1_fatigue back to the end-user. All of the _ in each Unique Reponse Name in the interaction will be replaced with a space, which you can show back to your user.
You can then use feedback boxes and a container to show the responses on a later page:
home1 is a feedback textbox which will be shown on s1_fatigue2 if Other_aspects_of_home_life was chosen for the interaction home on page s1_fatigue.
This command allows users to reset their password if they forget it. A new password will be emailed to them and they can use it to login. You can create additional pages to allow users to change their password to a personal and memorable one when they next login.
Example 1
This logic will change a user's password if they enter a registered email address into the text-entry box called email, and will show them the resetpass_confirm page.
Please see the Changing and resetting users passwords tutorial intervention on the LifeGuide Community Website for a demo showing how this logic is used.
The Example 1
In this example we calculate 100 divided by 3 (33.333333). When we display it to the user on In this example we collect the scores from a 3 item true/false quiz and present the scores as a percentage.
First we grade the quiz by giving each question a score of 1 (correct) or 0 (wrong).
We then add together the scores using In this example we round a large number to the nearest hundred.
This takes the number 1,234,567 then divides it by 100, (12,345.67).
This number is then rounded to 12,346.
The new number is then multiplied by 100 giving 1,234,600.
The Example:
Then, later on in the logic (either in the same session or a later session) the following logic would be used:
So, in the first part of this logic page1 is saved for the end-user. Then when they get to page20 in the intervention the response that they entered on interaction1 on page1 will be reshown to them on interaction2 on page20.
This command is used after a page that contains interactions. If an end-user clicks on a next button on that page and then returns to it, the page will automatically show them the responses they entered the last time they saw that page.
Example 1
Any interaction on page1 will be saved and then loaded each time the end-user comes back to that page.
The Example 1
The most common use of setting variables will be to set a username for the user. Many of the logic commands such as This will set the variable username to whatever the end-user enters into the interaction uniquely named loginuname (usually an email address) on the login page. The word username can then be used any time throughout the logic to refer to the text an end-user entered into that interaction.
Example 2
You can set timings in your logic. Setting timings means you can change the timings for testing and change them back again to real-time easily, and it reduces the likelihood of mistakes being made.
In this example, twelvemonth has been set to the number of seconds in 12 months:
You can then use this in your login logic as follows:
The above logic will show the page studyfinished if it has been more than 12 months since baselinelinetime.
Example 3
You can set text such as an email address to avoid having to type it out each time, e.g. the study coordinator's email address:
This logic should appear near the top of your logic file. An advantage to using this function this way is that if you decide to change the study coordinator's email address, you only have to change it once (where you set it).
You can also set the text and timings in emails:
The advantages to setting text in emails are:
Please see the command Example 4
The So in example 2, the variable condition1 is set if end-users select optiona and optionc from the interaction chooseoptions on page1. Then those that are in this condition are sent to page 3 where they will receive tailored information based on the options they selected.
Example 5
In this example, the The saveuniquevalue function is used in the same way as the savevalue function. The only difference is that with saveuniquevalue, if the value entered by an end-user is not unique, the function will return a 'false' input, and you can use this to stop end-users continuing with the intervention until they have entered a value which is unique and you can send the study coordinator an email to alert them of this.
To save and check a variable entered by an end-user is unique:
If an end-user has entered a response that is not unique, you can allow them to continue with the intervention and send an email to the study coordinator.
The savevalue command saves a variable that can be loaded again in later sessions. It is used if users have to create an account to access your intervention and you want to save information to a user.
It can be used to:
This will save the variable web_support for a username. group will be the column heading in your data in the User data sheet.
When loading this value later in your logic, you will use the command Example 2 - Create and save a numeric variable
This will save 1 for the variable work. work will be the column heading in your data in the User data sheet.
You can use this to show feedback on a page in another session:
This logic will show the feedback summary on page s1area if the variable work is more than 0.
This will save the response given to interaction1 on page1 to the variable s1_fatigue for the username.
To load this later in your logic, you would use the variable name s1_fatigue:
This will load the variable s1_fatigue and will show it in the text box fatigue_score on page5. For this to function correctly, fatigue_score needs to be set as a printed variable.
This will save the current time as s1_time.
You can load this later in your logic to ensure that end-users do not see session 2 until 1 week later:
This will create the variable baselinecomplete and will save yes. In this example, you can use a number instead of yes:
You can load this in your logic to check that an end-user has completed their baseline questionnaire:
This will show the page q_notcomplete if the end-user has seen qintro, but the variable baselinecomplete is empty (because the baseline questionnaire has not yet been completed).
This is the command for setting up e-mails to send out to end-users at specific points in the intervention. The function for sending out an e-mail always uses the same basic formula:
Example 1
In this example, the first part of the logic , This is the command for sending sms text messages to an end-user. It uses a similar basic formula as the command for sending email messages. The only differences are:
Note: You will need to set up an sms account for your intervention before you can send sms messages. See LifeGuide Community Website FAQs for more information.
This command tells the intervention how many characters a user has entered into a free text interaction.
This can be useful if you want your users to create usernames that are a specific number of characters.
To use this function you will need to write an error message:
In this example, the error message called “namemessage” will be shown to users if they have entered less than 5 characters in the interaction called “username”.
Please see The This command shows each of the pages you have created. Pages will be shown in the order they are written in the logic. When an end-user clicks on a Next button on a page, they will be moved to the next page written in the logic.
Example 1
In the example above, the end-user will be shown the page named ‘page1’. When they click on the next button on page1, they will see the page called page2’. This is followed by ‘page3’ and finally ‘page4’.
NB Before you can preview your intervention, you will need to have the show command in the logic file for each page you want to view.
As the logic requires you to use unique names for each page in your logic, you can only use the show command once for each page. However, you can re-show the same page to users - see the You can also reshow pages to your end-user by using a jump button on a previous page.
This command can be used to show users how much time has passed since they last logged into the intervention.
Example
Using the 1. In your logic, show the page (e.g. “time”) where you want to display how long it has been since the user last logged into the website:
2. In your logic, create a new variable (e.g. “username”) to tell the intervention, which user, time since login data should be displayed for:
(For this logic to work, you will need to have already created “login” and “signup” pages which contain free text interactions to allow the user to enter their name or other identifier such as an email address – see also 1.12 set)
3. On your “time” page, create a new variable to represent where the time since login data should be displayed to the user (e.g. “secs”). (This is done using the ‘set as variable’ function). Then, in your logic, set this variable to display the desired time since login for a particular user, using the So, in this example, on the page named “time” you have shown the user the time in seconds since they last logged into the intervention.
The third step can be repeated to show the user the time in “minutes”, ”hours”, “days”, “weeks” or “months” since they last logged into the intervention.
The This is an a function for advanced users. It returns a URL encoded version of a string and should be used only when creating a dynamic URL (i.e. using a variable). It is used when the variable might contain non alphanumeric characters. It converts a string into the correct format to prevent usual characters from breaking the link. This is because certain characters (such as ? and &) have special functions when included in a URL and have to be encoded in a different format (e.g. the & symbol gets converted to %26).
URL encoding is common and you will find more information here: http://en.wikipedia.org/wiki/Percent-encoding
set usernion should not be the same as any unique name that has been given to an object or page in your intervention.
begin session1
show page1
show page2
end
begin stress
begin causes
show page1
show page2
end
begin relieve
show page3
show page4
end
end
end
will end the section causes.
The section relieve will then begin and page3 and page4 will be shown.
The next end
will end the section relieve. The final end
will end the section stress.
C
cancelemail
cancelemail (append(username, "unique_email_name", e-mail address))
cancelemail(append(username, "email_session2r"), username)
cancelemail(append(username,"q1_notcomplete"), "study@test.ac.uk")
cancelsms
cancelsms
command and a phone number:
after pagename if cancelsms ("unique name for sms message", phonenumber) goto nextpage
changepassword
after passworddetails if changepassword (username, passworddetails.old, passworddetails.new) goto confirmchange
checkemailvalidity
show invalidemail if (not (checkemailvalidity (email)))
checkphonenumbervalidity
show invalidnumber if (not (checkphonenumbervalidity (phone)))
checkuserenabled
checkuserexists
show registeredemail if (checkuserexists (email))
comparetimes
comparetimes
can be used to control users’ access to different sessions or pages within an intervention.
In your logic, you will first need to create a new variable (e.g. "username") which will tell the intervention which user times need to be compared for:
set
username to
login.name
if
( not
( isempty
( signup.name ) ) ) set
username to signup.name
The order of your logic is very important when using the comparetimes
function:
1. You first need to show the page users see before they are directed to particular sessions (e.g. "mainpage"):
show
mainpage
2. Using the comparetimes
function you now need to write the logic which directs the user to a particular session or page of the intervention:
after
mainpage if
( comparetimes
( loadvalue
( username, "session4time"
) , currenttime
( ), "seconds"
) >=
120 ) goto
endpage
“seconds”
may be replaced by “minutes”
, “hours”
, “days”
, “weeks”
or “months”
(Don’t forget to end each with an ‘s’!)
after
mainpage if
( comparetimes
( loadvalue
( username, "session3time"
), currenttime
( ), "seconds"
) >=
120 ) goto
session4
after mainpage if ( comparetimes ( loadvalue ( username, "session3time" ), currenttime ( ), "seconds" ) <= 120 ) goto waitpage
"session3time"
and "session4time"
are created in step 3.
3. Finally, using the show
function you need to display the individual pages or sessions of your intervention, e.g.:
show
waitpage
show
session3
after
session3 if
( savevalue
( username, “session3time”
,
currenttime
( ) ) )goto
session3end
show
session3end
currenttime function
(see currenttime), this logic instructs the intervention to save a new variable “session3time”
. This new variable records the time at which the user completed session3.
Example 2
comparetimes
to convert the difference between two times to weeks, days, hours, minutes and seconds to tell the user how long they need to wait before features of the intervention are unlocked. In this example, we display the time until Christmas 2016.
set timenow to (currenttime())
set christmas to (1482624000)
set weeks to (comparetimes(timenow,christmas,"weeks"))
set days to (comparetimes(timenow,christmas,"days"))
set hrs to (comparetimes(timenow,christmas,"hours"))
set mins to (comparetimes(timenow,christmas,"minutes"))
set days2 to (days - (weeks*7))
set hrs2 to (hrs - (days*24))
set mins2 to (mins - (hrs*60))
set secs to ((christmas - timenow) - (mins*60))
comparetimes
to set variables - the time between now and Christmas in weeks, days, hours and minutes. However, we want to display the time between now and Christmas as a whole, not the total number of days, total number of hours, total number of minutes and total number of seconds.
comparetimes
for calculating the difference in seconds as currenttime
is already in seconds.
show intro
set intro.hrs to hrs2
set intro.mins to mins2
set intro.secs to secs
set intro.days to days2
set intro.weeks to weeks
contains
after page1 if (page1.exercise contains "none") goto page4
Example 2
after page1 if (or( page1.exercise contains "1day", page1.exercise contains "2days" )) goto page4
countif
after page1 if (countif (not (isempty (page1.interaction1))), (not (isempty (page1.interaction2))), (not (isempty (page1.interaction3))), (not (isempty (page1.interaction4)))) <3) goto page4
currenttime
currenttime
function can be used to create new variables which save the time at which users completed a particular session of the intervention.
set username to login.name
if ( not ( isempty ( signup.name ) ) ) set username to signup.name
show session3
after session3 if ( savevalue ( username, “session3time”, currenttime ( ) ) )goto session3end
show session3end
"session3time".
currenttime
function can also be used as a comparison or reference point. This is particularly useful if you want to put time controls on when users can access particular sessions of the website (see also 2.12 comparetimes):
after mainpage if ( comparetimes ( loadvalue ( username, "session3time" ), currenttime ( ), "minutes" ) >= 120 ) goto session4
after mainpage if ( comparetimes ( loadvalue ( username, "session3time" ), currenttime ( ), "minutes" ) <= 120 ) goto waitpage
currenttime
function is always followed by (). These empty brackets tell the intervention that currenttime
should act as a logic function rather than an intervention variable that you have created yourself.
D
decimalplaces
round
command can be used.
decimalplaces
to abbreviate whole numbers to a number of significant figures (e.g. setting 1,234,567 to 1,234,600) by asking for a negative number of decimal places; a negative number of decimal places will be treated as 0 decimal places. This can be done using round
(see example 3 of round
).
set numberpi to decimalplaces(3.1415926,4)
numberpi
to 3.1416.
Example 2
show circle_page
set cradius to circle_page.radius
set pi to 3.14159
set carea to ((cradius*cradius)*pi)
set careashort to decimalplaces(carea,2)
show results_page
set results_page.circle to careashort
circle_page
.
results_page
we show the user the area of the circle, to 2 decimal places.
default
save
command - see save
for an example.
saveandload
command.
divide
/
can also be used. The command divide
is used when performing calculations.
set score1 to (page1.interaction1 / page1.interaction2)
set overallscore to (score1 / score2)
E
else
else
is used only with if
. It allows you to do something if a condition is Not met. For example:
if not(or(isempty(page1.q1),isempty(page1.q2))) set page1_complete to 1
else set page1_complete to 0
else
logic on the next line sets page1_complete to 0 if the interactions have not been answered.
end
begin
for details of how to use end
. The end
command is always used with the begin
command.
F
for
for
key command is used with the save
and graph
key commands.
G
getuserid
getuserid(username)
goto
goto
command is always used with the after
command. It tells the logic which page the user should goto after that line. See after
for details.
graph
graph
key command is used when you have used the graph interaction. It is used to plot the information given by end-users to the graph.
graph value to "data variable determined on the graph interaction" for unique_identifier_for_the_end-user_e.g._a_username
set pagename.graph-1 to graph "data variable determined on the graph interaction" for username
set
key command for more information).
show progresschart
graph progresschart.kg to "weight" for username
show weightgraph
set weightgraph.graph-1 to graph "weight" for username
H
hasseen
hasseen
is used to show end-users pages based on what they have or have not seen before.
show login
show s1welcome if (not(hasseen (username, "s1welcome")))
show s2welcome if (not(hasseen (username, "s2welcome")))
show s3welcome if (not(hasseen (usernme, "s3welcome")))
not
, to tailor the intervention for users.
show s1_feeback2 if (hasseen (username, "s1_feedback1")))
show s1_feeback3 if (hasseen (username, "s1_feedback2")))
Using hasseen in sessions
show session2.interaction1 if (hasseen (username, "session1final"))
show session2.interaction1 if (hasseen (username, "session1final", "true"))
show session2.interaction1 if (hasseen (username, "session1final", "this"))
hmacencode
hmacencode
is an advanced logic command that encrypts data. It is used to obscure data so that it cannot be read. You cannot decrypt anything encrypted using hmacencode
.
set encoded to hmacencode("This message is encoded", "secret")
hmacencode
is to check that data passed from one intervention to another has not been corrupted.
I
if
if
command is always used with another command (e.g. after, show). It is a conditional command so it should always be followed by a true or false statement (i.e. a statement that will be carried out if it is true OR a statement that will be carried out if it is false).
isempty
after page1 if (isempty (page1.interaction1)) goto page4
set none if (isempty (page1.interaction1))
L
load
save
command for more details. The load
command is always used with the save command.
loadvalue
lessthan
<
can also be used.
set condition1 if (page1.interaction1 < page1.interaction2)
Example 2
after login if (comparetimes (loadvalue(username, "session1_time"), currenttime(), "seconds" ) < 86400)
lessthanequal
<=
can also be used.
set condition1 if (page1.interaction1 <= page1.interaction2)
Example 2
after login if (comparetimes (loadvalue(username, "session1_time"), currenttime(), "seconds" ) <= 86400)
M
makenewuser
makenewuser
command is used to set up an for the end-user using a username (or e-mail address) and password.
show signup
makenewuser(signup.signup_username, signup.signup_password))
midnight
midnight()
is similar to currenttime()
, but gives the time at midnight earlier today. It is used to set a function for a specific time, for example, you could send an email to an end-user at 7am one week after registering as in the example below.
set delay7am to + (midnight(), 25200, (-1 * currenttime()))
sendemail
logic.
sendemail (append(username,"welcome_email"),username,"You have successfully registered to Stress Less", append("Dear ", loadvalue (username, "firstname"), "\n\n", welcome), (delay7am+604800))
morethan
>
can also be used.
set condition2 if (page1.interaction1 > page1.interaction2)
morethanequal
>=
can also be used.
set condition2 if (page1.interaction1 >= page1.interaction2)
multiply
*
may also be used.
set score1 to (page1.interaction1 * page1.interaction2)
set overallscore to (score1 * score2)
N
named
named
command as so (note that in the example below the line [etc, etc] has been used to indicate that there would be other lines of logic here):
show page1
show page1 named page2
show page1 named page3
not
not
command is used to form the opposite of statement.
set condition1 if (not (page1.interaction1 = "yes"))
not
with isempty
. The command not
is used to refer to a specific response to an interaction that has not been chosen. isempty
is used to refer to an interaction that an end-user has not answered.
not
and isempty
can be used together to refer to an interaction that is not empty (i.e. something has been entered):
after page1 if (not (isempty (page1.interaction1))) goto page5
set condition1 if (not (isempty (page1.interaction1)))
O
or
or
command is used in the same way as the and
command. It can be used to check if a user has responded in a particular way to an interaction (or number of interactions):
show page1
after page1 if (or (page1.interaction1 = "none", page1.interaction1 = "sometimes")) goto page3
savevalue(username, "sport", "cardio") if (or( page1.interaction1 = "running", page2.interaction2 = "swimming"))
P
patternmatch
patternmatch
command is used when users are required to enter a specific combination of characters into a text entry interaction, e.g. a study code. The logic patternmatch(characters,interactionname)
will check if the characters entered by the user, match the characters that you have pre-defined.
Patternmatch
uses "Regular Expressions" to define a pattern of characters. Some basics are described below but for more detailed information, you can find guides to "Regular Expressions" on the Internet.
Character
Example
Comment
a
a
match a single lower-case character. Can be any character except .?+*[]\^$()|{}
A
A
match a single upper-case character.
abc
abc
match the exact sequence of characters
.
a
. means any character
a?
a
? means zero or one of the preceding character
a*
aaa
* means any number of the preceding character
a+
aaaa
+ means one or more of the preceding character
[abc]+
cab
[] means any character between the brackets
[^abc]+
fed
^ in a [] means none of the characters between the brackets
[0-9]
1
match any number between this range
[A-Z]
LIFEGUIDE
match any uppercase letter between this range
[a-z]
lifeguide
match any lowercase letter between this range
[A-Za-z]+
LifeGuide
Any uppercase or lowercase letters
a(bc)+d
abcbcbcd
() groups things together
ab|cd
cd
| means 'or'
Show nomatch if( not( patternmatch( “study[0-9][0-9]id[0-9][0-9]”, password ) ) )
patternmatch
function could also be used to direct users to specific conditions, sections or pages within an intervention e.g.
show page1 if (patternmatch(“[0-9][0-9]a[0-9][0-9]”, interaction1))
show page2 if (patternmatch(“[0-9][0-9]b[0-9][0-9]”, interaction1))
Instead of 0-9, you could use [a-z], which means the user will need to enter any letter between a and z in the alphabet. You could also specify [a-z0-9] – this will mean the user will need to enter either a letter or a number.
patternmatch
function is case sensitive. If you specify [a-z], the user will need to enter a lowercase letter. If you specify [A-Z], the user will need to enter an uppercase letter. If you specify [a-zA-Z] the user may enter either an uppercase or a lower case letter.
printtime
Letter
Description
Example
G
Era designator
AD
y
Year in two digits
01
yyyy
Year in four digits
2001
M
Month in year
07
MMMM
Month in year
July
d
Day in month
10
h
Hour in A.M./P.M.
(1~12) 12
H
Hour in day
(0~23) 22
m
Minute in hour
30
s
Second in minute
55
S
Millisecond
234
E
Day in week
Tues
EEEE
Day in week
Tuesday
D
Day in year
360
F
Day of week in month
2 (second Wed. in July)
w
Week in year
40
W
Week in month
1
a
A.M./P.M. marker
PM
k
Hour in day (1~24)
24
K
Hour in A.M./P.M. (0~11)
10
For digits, e.g. minutes, use the number of letters for the number of digits you want to display. For example, 9:01:07 should be written as h:mm:ss
printtime
cannot be used to display the difference between 2 times if the difference is greater than 1 day. To display the difference between 2 times, use comparetimes
(see #comparetimes, Example 2).
Example 1
printtime
and currenttime
functions to display the time/date a user is shown a specific page of the intervention:
show welcome
set welcome.time to printtime (currenttime (), "H:m d-M-y")
Example 2
printtime
and store the result as a user variable.
set midnighttext to printtime (currenttime(), "'When you registered, it was 'H'hrs and 'm' minutes and 's' seconds since midnight'")
savevalue(username, "midnighttext", midnighttext)
Example 3
printtime
function to display particular times or dates that you have saved in your intervention logic, such as the time/date a user signed up for the intervention and the time/date they logged back into the intervention.
show signup
after signup if (and (makenewuser (signup.name, signup.password), savevalue(signup.name, “currentlogintime”, currenttime()))) goto welcome
currenttime
function to instruct the intervention to save the time/date a user signed up to the intervention as the variable "currentlogintime"
.
show welcome
set welcome.signuptime to printtime(loadvalue(signup.name, "currentlogintime"), "H:m d-M-y")
show login
after login if (and(savevalue(login.name, "lastlogintime", loadvalue(login.name, "currentlogintime")), savevalue(login.name, "currentlogintime", currenttime()))) go to loginhistory
"currentlogintime"
to create a new variable called "lastlogintime"
– the time at which the user first signed up to the intervention ("currentlogintime"
) now becomes the time at which they last logged in to the intervention ("lastlogintime"
).
currenttime
function to re-create a new "currentlogintime"
variable. Instead of saving the time at which the user first signed up for the intervention this variable now saves the time the user logged back into the intervention.
show loginhistory
set loginhistory.lastlogintime to printtime (loadvalue(login.name, "lastlogintime"), "H:m d-M-y")
set loginhistiry.currentlogintime to printtime (loadvalue(login.name, "currentlogintime"), "H:m d-M-y")
("lastlogintime"
) and the time they logged back into the intervention ("currentlogintime"
) in place of the words ‘lastlogintime’ and ‘currentlogintime’.
Example 4
savevalue (username, "goaltime", midnight())
show examplepage
set examplepage.weeklater to printtime((loadvalue(username,"goaltime")+delay), "E, d/M/y")
R
randomnumber
after page1 if (randomnumber (lowestvalue , highestvalue) =
value) goto page3
after page1 if (randomnumber (0, 1) = 1) goto page3
show page2
show page3
replaceall
replaceall ("c", "b", "caked car")
savevalue (username, "s1_home", replaceall("_", " ", s1_whattodo1.home)) if (or( s1_fatigue.home = "Other_aspects_of_home_life", s1_fatigue.home = "I_find_it_hard_doing_things_around_the_house",s1_fatigue.home = "I_cannot_get_out_and_about_the_way_I_used_to" ))
show s1_fatigue2.home1 if (s1_fatigue.home = "Other_aspects_of_home_life")
show s1_fatigue2.home2 if (s1_fatigue.home = "I_find_it_hard_doing_things_around_the_house")
show s1_fatigue2.home3 if (s1_fatigue.home = "I_cannot_get_out_and_about_the_way_I_used_to")
resetpassword
after resetpass if (resetpassword(resetpass.email)) goto resetpass_confirm
round
round
command rounds a number to the nearest whole number. For example, 5.49 rounds down to 5 and 5.5 rounds up to 6. This is useful if you want to calculate values and then present them to the user based on a quiz score. If you want to round a number to multiple decimal places, you should use the decimalplaces
command.
examplepage
we want it to display 33.
set exactthird to (100/3)
set approxthird to round(exactthird)
show examplepage
set examplepage.number to approxthird
Example 2
show exp
if exp.question1="true" set q1 to 1
if exp.question1="false" set q1 to 0
if exp.question2="true" set q2 to 0
if exp.question2="false" set q2 to 1
if exp.question3="true" set q2 to 1
if exp.question3="false" set q2 to 0
set totalscore to (sum(q1,q2,q3))
set scorepercent to ((totalscore/3)*100)
set scoreround to round(scorepercent)
show results_page
set results_page.score to scoreround
sum
.
To calculate the percentage, we divide the total by three and multiply by 100.
We then round the number and display it to the user on the results_page
.
Example 3
set largenumber to 1234567
set roundnumber to round(largenumber/100)
set largenumbertwo to (roundnumber*100)
S
save
save
key command allows you to save the responses that an end-user enters on a page. This can then be loaded using the load
key command onto another page to re-show it to your end-user. The save and load commands can be used across sessions and requires end-users to have registered a user account.
show page1
save page1 for username
show page20
set default page20.interaction2 to load page1.interaction1 for username
saveandload
show page1
saveandload page1 for username
set
set
command can be used to set variables within the logic or for performing calculations.
save
will need a username to be set. This will need to be done at the start of your logic file.
Set username to login.loginuname
set twelvemonth to "31536000"
after login if (comparetimes(loadvalue(username,"baselinetime"), currenttime(),"seconds") >= twelvemonth) goto studyfinished
set studyemail to "study@soton.ac.uk"
set 3monthemail to "Thank you for taking part in The Reactivate Study. It is now time to complete your 3 month questionnaire. Your answers are very important to us. Please use the following link to login:\n\nwww.webaddress.co.uk\n\nIf you have any questions about the study, or no longer wish to participate, please contact us on study@soton.ac.uk\n\nFrom The Reactivate Team."
set oneday to "86400"
set oneweek to "604800"
sendemail
for more information on how to write email logic.
set
key command can also be used to set a variable based on how end-users respond to certain interactions. This can then be used to tailor the intervention based on this variable.
show page1
set condition1 to and (page1.chooseoptions contains "optiona", page1.chooseoptions contains "optionc")
after page1 if condition1 goto page3
set
key command is used to set a score based on the calculation that follows. In this calculation the number that the end-user selects in the interaction ‘dailyexercise’ on page1 is multiplied by 5 to create their exercise score
set exercisescore to (page1.dailyexercise * 5)
saveuniquevalue
Example 1
saveuniquevalue(username, "studyid", page1.interaction1)
Example 2
after registration if (and(not(saveuniquevalue(username, "studyid", registration.interaction1)), sendemail( append(username,"not_unique"), "study@soton.ac.uk", "Participant - not unique", append("Participant ", loadvalue (username, "idnumber"), "has entered information that is not unique."),10) )) goto registrationfinish
For more information on saveuniquevalue please click here
savevalue
Example 1 - Create and save a text variable
savevalue(username, "group", "web_support")
loadvalue
, and the variables you have created - group and web_support:
after page5 if (loadvalue(username, "group") = "web_support") goto page10
savevalue(username, "work", 1)
.
show s1area.summary if (loadvalue (username, "work")>0)
Example 3 - Save a response a user has given to an interaction
savevalue(username, "s1_fatigue", page1.interaction1)
set page5.fatigue_score to loadvalue (username,"s1_fatigue")
Example 4 - Save the time
savevalue(username, "s1_time", currenttime())
after login_successful if (comparetimes(loadvalue(username, "s1_time"), currenttime(), "seconds" ) > 604800) goto s2_welcome
Example 5 - Save a questionnaire or session as complete
savevalue(username, "baselinecomplete", "yes")
savevalue(username, "baselinecomplete", "1")
after login_successful if (and( hasseen(username, "qintro"), (isempty(loadvalue(username, "baselinecomplete"))) )) goto q_notcomplete
sendemail
after pagename1 if sendemail(append(username,"unique name for e-mail"), e-mail address, "Subject message for e-mail", "E-mail content", number in seconds indicating how long after the end-user views pagename1 that you want the e-mail sent out) goto pagename2
sendemail (append(username,"welcome_email"),username,"You have successfully registered to Stress Less", append("Dear ", loadvalue (username, "firstname"), "\n\n", welcome), 10)
(append(username,"welcome_email")
, is the unique name of the email. The append function joins the username to the name of the email (welcome_email) to make sure that every email is unique. If the append function is not used, every email will be called welcome_email and only the first one will be unique - the other emails will not be unique and will not be sent out.
A full tutorial is available for Sending Emails including details of how to send e-mails to a researcher or healthcare professional instead of the end-user.
sendtext
after page1 if sendtext ("welcometext", login.phone, "Thank you for registering for the lifestyle intervention. Please remember to check back regularly for more information.", 60) goto page1
stringlength
show namemessage if (stringlength (username) < 5)
sum
add
show
show
command is the first logic command you will need to know. It is also probably the most common one that you will use.
show page1
show page2
show page3
show page4
named
command above for more details.
T
timesincelogin
timesincelogin
command involves 3 basic steps:
show
time
set
username to
login.name
if
(not
(isempty
(signup.name))) set
username to
signup.name
timesincelogin
command.
set
time.secs to timesincelogin
(username, "seconds"
)
to
to
key command is used with the set
key command to set variables.
U
urlencode
urlencode(string)