field_edit_form.inc.php 948 B

12345678910111213141516171819
  1. <table cellpadding="2" cellspacing="1" width="98%">
  2. <tr>
  3. <td width="100">文本框长度</td>
  4. <td><input type="text" name="setting[size]" value="<?php echo $setting['size'];?>" size="10" class="input-text"></td>
  5. </tr>
  6. <tr>
  7. <td>默认值</td>
  8. <td><input type="text" name="setting[defaultvalue]" value="<?php echo $setting['defaultvalue'];?>" size="40" class="input-text"></td>
  9. </tr>
  10. <tr>
  11. <td>允许上传的文件类型</td>
  12. <td><input type="text" name="setting[upload_allowext]" value="<?php echo $setting['upload_allowext'];?>" size="40" class="input-text"></td>
  13. </tr>
  14. <tr>
  15. <td>是否从已上传中选择</td>
  16. <td><input type="radio" name="setting[isselectimage]" value="1" <?php if($setting['isselectimage']) echo 'checked';?>> 是 <input type="radio" name="setting[isselectimage]" value="0" <?php if(!$setting['isselectimage']) echo 'checked';?>> 否</td>
  17. </tr>
  18. </table>