Function __global->special_page_types
Definitions
sources/view_modes.php
- Handle special page type output.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $special_page_type | ID_TEXT | No | No | required parameter | query templates tree lang | N/A | The special page type |
| &$out | Tempcode | Yes | No | required parameter | N/A | N/A | The normal script Tempcode output |
| $out_evaluated | ?string | No | No | required parameter | N/A | N/A | The normal script evaluated output (null: not evaluated yet) |
Preview
Code (PHP)
/**
* Handle special page type output.
*
* @param ID_TEXT $special_page_type The special page type
* @set query templates tree lang
* @param Tempcode $out The normal script Tempcode output
* @param ?string $out_evaluated The normal script evaluated output (null: not evaluated yet)
*/
function special_page_types(string $special_page_type, object &$out, ?string $out_evaluated)
* Handle special page type output.
*
* @param ID_TEXT $special_page_type The special page type
* @set query templates tree lang
* @param Tempcode $out The normal script Tempcode output
* @param ?string $out_evaluated The normal script evaluated output (null: not evaluated yet)
*/
function special_page_types(string $special_page_type, object &$out, ?string $out_evaluated)

