Back

get()

Name Type Required Default Description
name string Yes Variable name to get setting for.
functionName string No Function name to get setting for.
// Get the current value for the `tableNamePrefix` Wheels setting
setting = get("tableNamePrefix");

// Get the default for the `message` argument of the `validatesConfirmationOf` method
setting = get(functionName="validatesConfirmationOf", name="message");
Copied!