Collections functions
General functions
Render functions
Theme permission functions
User functions
Resource functions
Test functions

render_fixed_text_question()

Description

Renders a 'fixed' text question - not an input but to display information or values that cannot be changed

Parameters

ColumnTypeDefaultDescription
$label string
$text string

Return

void

Location

include/render_functions.php lines 5864 to 5871

Definition

 
function render_fixed_text_question($label$text)
    {   
    echo 
"<div class='Question'>
        <label>" 
htmlspecialchars($label) . "</label>
        <div class='Fixed'>" 
htmlspecialchars($text) . "</div>
        <div class='clearerleft'></div>
        </div>"
;
    }

This article was last updated 30th September 2023 03:35 Europe/London time based on the source file dated 28th September 2023 09:45 Europe/London time.