Function __global->_real_feedback_type
Definitions
sources/feedback.php
- We allow the feedback type to be over-specified in some places, to allow more configurability - but need to narrow it down in some places.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $feedback_type | ID_TEXT | No | No | required parameter | N/A | N/A | Content type |
Returns
- Fixed content type
- Type: ID_TEXT
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* We allow the feedback type to be over-specified in some places, to allow more configurability - but need to narrow it down in some places.
*
* @param ID_TEXT $feedback_type Content type
* @return ID_TEXT Fixed content type
*/
function _real_feedback_type(string $feedback_type) : string
* We allow the feedback type to be over-specified in some places, to allow more configurability - but need to narrow it down in some places.
*
* @param ID_TEXT $feedback_type Content type
* @return ID_TEXT Fixed content type
*/
function _real_feedback_type(string $feedback_type) : string

