?>
"></span></td>
                <td class=""><b><?php 
echo Language::string(122);
?>
:</b></td>
            </tr>
        </table>
    </legend>
    <select id="formTestSelectSectionType" class="fullWidth ui-widget-content ui-corner-all">
        <optgroup label="<?php 
echo Language::string(147);
?>
">
            <?php 
foreach (DS_TestSectionType::get_all_selectable() as $section) {
    ?>
                <option id="optionSectionType<?php 
    echo $section->id;
    ?>
" value="<?php 
    echo $section->id;
    ?>
" class="<?php 
    echo $section->id == DS_TestSectionType::LOWER_LEVEL_R_CODE || $section->id == DS_TestSectionType::LOOP || $section->id == DS_TestSectionType::QTI_INITIALIZATION || $section->id == DS_TestSectionType::QTI_RESPONSE_PROCESSING ? User::view_class() : "";
    ?>
" ><?php 
    echo $section->get_name();
    ?>
 <?php 
    echo $section->id == DS_TestSectionType::LOOP ? Language::string(621) : "";