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 5800 to 5807

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 24th April 2024 11:05 Europe/London time based on the source file dated 17th April 2024 16:25 Europe/London time.