示例#1
0
									<option value="0">Non-Ranked Node</option>
									<option value="">---------------------------------</option>
									<?php 
    $rankArr = $taxonEditorObj->getRankArr();
    foreach ($rankArr as $rankId => $rName) {
        echo '<option value="' . $rankId . '" ' . ($taxonEditorObj->getRankId() == $rankId ? 'SELECTED' : '') . '>' . $rName . '</option>';
    }
    ?>
								</select>
							</div>
						</div>
						<div style="clear:both;">
							<div style="float:left;width:110px;font-weight:bold;">Notes: </div>
							<div class="editfield">
								<?php 
    echo $taxonEditorObj->getNotes();
    ?>
							</div>
							<div class="editfield" style="display:none;">
								<input type="text" id="notes" name="notes" value="<?php 
    echo $taxonEditorObj->getNotes();
    ?>
" style="width:475px;" />
							</div>
						</div>
						<div style="clear:both;">
							<div style="float:left;width:110px;font-weight:bold;">Source: </div>
							<div class="editfield">
								<?php 
    echo $taxonEditorObj->getSource();
    ?>