Function DecisionTree->process_input
Definitions
sources/decision_tree.php
- Process a step within the decision tree, making decisions and substitutions based on the past step's input.
- Visibility: protected
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
---|---|---|---|---|---|---|---|
$tree_position | ID_TEXT | No | No | required parameter | N/A | N/A | Tree position coming from |
Returns
- Tree position going to or Tempcode URL
- Type: mixed
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Process a step within the decision tree, making decisions and substitutions based on the past step's input.
*
* @param ID_TEXT $tree_position Tree position coming from
* @return mixed Tree position going to or Tempcode URL
*/
protected function process_input(string $tree_position)
* Process a step within the decision tree, making decisions and substitutions based on the past step's input.
*
* @param ID_TEXT $tree_position Tree position coming from
* @return mixed Tree position going to or Tempcode URL
*/
protected function process_input(string $tree_position)