Function __global->ecv_IF_NON_PASSED_OR_FALSE
Definitions
sources/symbols.php
- Evaluate a particular Tempcode directive.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| &$value | string | Yes | No | required parameter | N/A | N/A | Value to write into |
| $lang | LANGUAGE_NAME | No | No | required parameter | N/A | N/A | The language to evaluate this symbol in (some symbols refer to language elements) |
| $escaped | array | No | No | required parameter | N/A | N/A | Array of escaping operations |
| $param | array | No | No | required parameter | N/A | N/A | Parameters to the symbol. For all but directive it is an array of strings. For directives it is an array of Tempcode objects. Actually there may be template-style parameters in here, as an influence of singular_bind and these may be Tempcode, but we ignore them. |
Preview
Code (PHP)
/**
* Evaluate a particular Tempcode directive.
*
* @param string $value Value to write into
* @param LANGUAGE_NAME $lang The language to evaluate this symbol in (some symbols refer to language elements)
* @param array $escaped Array of escaping operations
* @param array $param Parameters to the symbol. For all but directive it is an array of strings. For directives it is an array of Tempcode objects. Actually there may be template-style parameters in here, as an influence of singular_bind and these may be Tempcode, but we ignore them.
*/
function ecv_IF_NON_PASSED_OR_FALSE(string &$value, string $lang, array $escaped, array $param)
* Evaluate a particular Tempcode directive.
*
* @param string $value Value to write into
* @param LANGUAGE_NAME $lang The language to evaluate this symbol in (some symbols refer to language elements)
* @param array $escaped Array of escaping operations
* @param array $param Parameters to the symbol. For all but directive it is an array of strings. For directives it is an array of Tempcode objects. Actually there may be template-style parameters in here, as an influence of singular_bind and these may be Tempcode, but we ignore them.
*/
function ecv_IF_NON_PASSED_OR_FALSE(string &$value, string $lang, array $escaped, array $param)

