|
|
Bungee LogicFrom $1Table of contents
PrerequisitesSchemaBungee Logic is built from some simple building blocks that should look familiar:
StatementsStatements add the logic and control flow to classes:
SitesA Site is a Bungee term that simply specifies what type of object you will be using. The site type basically specifies scope of the object to select. Important: Not all sites are valid in every context. For example, a site on a Form control cannot use the Var site as it is not executing in the context of function scope, but at class scope, so Path should be used. Intrinsic FunctionsAn intrinsic function is a function that is always available whether it is used or not. Every field has two intrinsic functions.
Every variable within a adapter has two intrinsic functions. Intrinsic VariablesIntrinsic Variables are variables that are automatically created inside various Bungee Logic statements to simplify logic programming. These variables should be considered system variables and should not be deleted or renamed - this will result in undefined behavior. Note You can however, change the type (see the Nested Iteration section of the Collection Iteration page for more details). Intrinsic variables often are automatically initialized with important information and can be modified to change the behavior of statements. Initrinsic variables are used by Iteration statements and OnError statements, among others. The following intrinsic variables are available in Bungee Connect:
Tags:
|