Function __global->_load_blank_output_state

Definitions

sources/global3.php

  • Load a fresh output state.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$just_tempcode boolean No No False N/A N/A Whether to only restore the Tempcode execution part of the state
$true_blank boolean No No False N/A N/A Whether to go for a completely blank state (no defaults!), not just a default fresh state
$initial boolean No No False N/A N/A Whether this is an initial state, and we can leave anything that is already set as set (handled on case-by-case basis)

Preview

Code (PHP)

/**
 * Load a fresh output state.
 *
 * @param  boolean $just_tempcode Whether to only restore the Tempcode execution part of the state
 * @param  boolean $true_blank Whether to go for a completely blank state (no defaults!), not just a default fresh state
 * @param  boolean $initial Whether this is an initial state, and we can leave anything that is already set as set (handled on case-by-case basis)
 */

function _load_blank_output_state(bool $just_tempcode = false, bool $true_blank = false, bool $initial = false)