Function __global->handle_symbol_preprocessing
Definitions
sources/tempcode.php
- Certain symbols need preprocessing, before the output stream is made.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $seq_part | array | No | No | required parameter | N/A | N/A | Symbol details |
| &$children | array | Yes | No | required parameter | N/A | N/A | Where we store children stuff |
| $template_name | ID_TEXT | No | No | Blank (empty string) | N/A | N/A | The name of the template this came from (blank: not from a file / unknown); only passed for directives to avoid infinite loops with INCLUDE |
Preview
Code (PHP)
/**
* Certain symbols need preprocessing, before the output stream is made.
*
* @param array $seq_part Symbol details
* @param array $children Where we store children stuff
* @param ID_TEXT $template_name The name of the template this came from (blank: not from a file / unknown); only passed for directives to avoid infinite loops with INCLUDE
*/
function handle_symbol_preprocessing(array $seq_part, array &$children, string $template_name = '')
* Certain symbols need preprocessing, before the output stream is made.
*
* @param array $seq_part Symbol details
* @param array $children Where we store children stuff
* @param ID_TEXT $template_name The name of the template this came from (blank: not from a file / unknown); only passed for directives to avoid infinite loops with INCLUDE
*/
function handle_symbol_preprocessing(array $seq_part, array &$children, string $template_name = '')

