Command Explanation
All pages rendered on the system use UDB commands to insert different elements on to the page.
For example, if you want to put the page title onto a template then you can insert the command {PAGE_TITLE}. This will be replaced with the current page title whatever page is being displayed.
If you want to add a link to a another page on the system then you can add {LINK(1013, Contact)}. This will create a link to the page number 1013 and add the text "Contact" (Contact).
All of the commands need to be enclosed in { } when used on the page and the command needs to be entered in upper case. They may also have parameters. These are enclosed in ( ). Most of the time it is easier to enter the parameters by position separated by commas. So in the LINK example above, the first parameter is the Object ID of the page you want to link to and the second parameter is the text you want to be displayed on the page. Sometimes there may be a larger number of parameter options and using lots of commas to get to the correct parameter can be awkward and confusing to read. In this case, you can use a JSON list of parameters. So for the example above, you can use {LINK(1013, {"text":"Contact","class":"btn btn-primary"})}. The JSON list of parameters can only be used as the last parameter. A list of all the parameters are detailed in the command help.
You can also pass in an array of parameters using an array variable. To do this add a JSON parameter "param_array":"V_ARRAY". All the values in the V_ARRAY variable will be used as parameters.
When adding an Object ID as a parameter, it is a good idea to precede it with "#:". This helps the system to identify the number as an Object ID. This is essential if you are writing an application to be shared by other organisations as the Object IDs will need to be changed by the system when they import your application. So the example above, should be written {LINK(#:1013, Contact)}. See OBJ_ID for more info.
If a parameter includes a comma it must be quoted {LINK(1013, "Contact John Doe or, a member of the team")}. If the parameter includes quotes and commas, quotes are escaped with another quote {LINK(1013, "Contact John ""The Man"" Doe or, a member of the team")}.
Parameter values are individually interpreted before they are passed to the command for processing. This can be prevented by preceeding the parameter value with two exclamation marks!!
See below for a full list of commands and their explanations.
Name | Description | Structure |
---|---|---|
COID | Return the current Object ID | {COID} |
DEV_MODE | Return TRUE or FALSE for the current Development Mode | {DEV_MODE} |
DNAM | Return the Domain Name | {DNAM} |
DNUM | Return the current Domain Number | {DNUM} |
DOID | Return the Domain Object ID | {DOID} |
DOMAIN | Returns the domain URL | {DOMAIN} |
DOPT | Return the Domain Options | {DOPT} |
HOID | Return the Home Page Object ID | {HOID} |
mod_id | Returns the id of the dialog window body | {mod_id} |
MOID | Returns the Main Object ID for the currently edited object | {MOID(id)} |
OBJ_ID | return the supplied object id | {OBJ_ID(obj_id)} |
ONAM | Return the Organisation Name | {ONAM} |
ONUM | Return the Organisation Number | {ONUM} |
OOID | Return the Organisation Object ID | {OOID)} |
PAGE_MODE | Return the current Page Mode (0 to 6) | {PAGE_MODE} |
POID | Return the current Page Object ID | {POID} |
PPID | Return the Previous Page Object ID | {PPID} |
SUB_TEMP | Return a list of Sub template ID currently in use | {SUB_TEMP} |
UA_OPT | Return TRUE if the user has the specified User Access Option checked | {UA_OPT(name)} |
UA_OPT_CLEAR | Temporarily clear a User Access Option | {UA_OPT_CLEAR(name)} |
UA_OPT_SET | Temporarily sets a User Access Option | {UA_OPT_SET(name)} |
UOID | Return the current User Object ID | {UOID} |
URL | Return the base URL of the site | {URL} |
USER_LEVEL | Return the current User Level | {USER_LEVEL} |