Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource 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 5857 to 5864

Definition

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

This article was last updated 19th March 2024 05:05 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.