field_edit_form.inc.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php defined('IN_PHPCMS') or exit('No permission resources.');?>
  2. <table cellpadding="2" cellspacing="1" width="98%">
  3. <tr>
  4. <td width="100">文本框长度</td>
  5. <td><input type="text" name="setting[size]" value="<?php echo $setting['size'];?>" size="10" class="input-text"></td>
  6. </tr>
  7. <tr>
  8. <td>默认值</td>
  9. <td><input type="text" name="setting[defaultvalue]" value="<?php echo $setting['defaultvalue'];?>" size="40" class="input-text"></td>
  10. </tr>
  11. <tr>
  12. <td>表单显示模式</td>
  13. <td><input type="radio" name="setting[show_type]" value="1" <?php if($setting['show_type']) echo 'checked';?>/> 图片模式 <input type="radio" name="setting[show_type]" value="0" <?php if(!$setting['show_type']) echo 'checked';?>/> 文本框模式</td>
  14. </tr>
  15. <tr>
  16. <td>允许上传的图片大小</td>
  17. <td><input type="text" name="setting[upload_maxsize]" value="<?php echo $setting['upload_maxsize'];?>" size="5" class="input-text">KB 提示:1KB=1024Byte,1MB=1024KB *</td>
  18. </tr>
  19. <tr>
  20. <td>允许上传的图片类型</td>
  21. <td><input type="text" name="setting[upload_allowext]" value="<?php echo $setting['upload_allowext'];?>" size="40" class="input-text"></td>
  22. </tr>
  23. <tr>
  24. <td>是否在图片上添加水印</td>
  25. <td><input type="radio" name="setting[watermark]" value="1" <?php if($setting['watermark']) echo 'checked';?>> 是 <input type="radio" name="setting[watermark]" value="0" <?php if(!$setting['watermark']) echo 'checked';?>> 否</td>
  26. </tr>
  27. <tr>
  28. <td>是否从已上传中选择</td>
  29. <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>
  30. </tr>
  31. <tr>
  32. <td>图像大小</td>
  33. <td>宽 <input type="text" name="setting[images_width]" value="<?php echo $setting['images_width'];?>" size="3" class="input-text">px 高 <input type="text" name="setting[images_height]" value="<?php echo $setting['images_height'];?>" size="3" class="input-text">px</td>
  34. </tr>
  35. </table>