コード例 #1
0
                        <?php 
}
?>
                </select>
                <i class="help-tip icon-question-sign" href="#purge_logs"></i>
            </td>
        </tr>
        <tr>
            <td width="180"><?php 
echo __('Default Name Formatting');
?>
:</td>
            <td>
                <select name="name_format">
<?php 
foreach (PersonsName::allFormats() as $n => $f) {
    list($desc, $func) = $f;
    $selected = $config['name_format'] == $n ? 'selected="selected"' : '';
    ?>
                    <option value="<?php 
    echo $n;
    ?>
" <?php 
    echo $selected;
    ?>
><?php 
    echo __($desc);
    ?>
</option>
<?php 
}