Function DecisionTree->run

Definitions

sources/decision_tree.php

  • Start the decision tree process, returning Tempcode for the screen currently on.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: object

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$recurse boolean No No False N/A N/A Whether we are running recursively, after just processing a prior result

Returns

  • Screen output
  • Type: Tempcode
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Start the decision tree process, returning Tempcode for the screen currently on.
 *
 * @param  boolean $recurse Whether we are running recursively, after just processing a prior result
 * @return Tempcode Screen output
 */

public function run(bool $recurse = false) : object