| 79 | ==== Tour Input ==== |
| 80 | |
| 81 | || **__Configuration__** || **auto_start** //boolean// - does the tour start automatically, default '''''false''''' || |
| 82 | || || **logged_in** //boolean// - does the tour require the person to be logged in, default '''''true''''' || |
| 83 | || **__Details__** || **Tour_Name** //string// || |
| 84 | || || **Tip_Title** //string// || |
| 85 | || || **Tip_Details** //string// || |
| 86 | || || **HTML_ID** //string// unique identifier for the location of the tip || |
| 87 | || || **Button** //string// the name of the button, default 'Next' || |
| 88 | || || **Tip_Location** //string// the side of the HTML_ID to which the tip points to, (top, bottom, left, right) default bottom || |
| 89 | || || **DataTable_ID** //string// Name of dataTable for which some data will be extracted || |
| 90 | || || **DataTable_row** //integer// The row of the table for which data is to be extracted || |
| 91 | || || **DataTable_columns** //stringlist// The column headings from which data is to be extracted (from the row) '''''each column can be referred to in the text using the special combination %(dt_<heading>)s where heading is one of the dataTable headings and is used in the string list || |
| 92 | || || **Redirect** //URL// page to which upon clicking the button the tour will redirect to || |
| 93 | |
| 94 | Example |
| 95 | {{{ |
| 96 | #!div style="font-size: 80%" |
| 97 | Tour_Name, joyrideID_1 |
| 98 | auto_start, false |
| 99 | logged_in, false |
| 100 | |
| 101 | Tip_Title, Situation |
| 102 | Tip_Details, Each situation button will perform an action that will allow you to see the various resources that are available. |
| 103 | HTML_ID, menu_div_sit |
| 104 | Button, Next |
| 105 | Tip_Location, Right |
| 106 | |
| 107 | Tip_Title, Decision |
| 108 | Tip_Details, Each decision button will perform an action that is part of a decision based on the situation. |
| 109 | HTML_ID, menu_div_dec |
| 110 | |
| 111 | Tip_Title, Response |
| 112 | Tip_Details, Each response button will perform an action that is in response to an earlier decision. |
| 113 | HTML_ID, menu_div_res |
| 114 | Tip_Location, Left |
| 115 | |
| 116 | Tip_Title, Facilities |
| 117 | Tip_Details, Here are a list of the different type of facilities that are registered on the system. |
| 118 | HTML_ID, facility_box |
| 119 | Tip_Location, Left |
| 120 | |
| 121 | Tip_Title, Feeds |
| 122 | Tip_Details, Here are a number of media feeds which can be configured to listen for a variety of information. |
| 123 | HTML_ID, feed-control |
| 124 | Tip_Location, Top |
| 125 | |
| 126 | Tip_Title, Register for an account |
| 127 | Tip_Details, Click the link to register for a free account. You will need to have an account to create data and explore Sahana Eden in depth |
| 128 | HTML_ID, register-btn |
| 129 | Button, Finish |
| 130 | }}} |