25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

42 lines
1.2 KiB

  1. <h3><?php render_navigation($db,$collection,false); ?> &raquo; <?php hm("properties");?></h3>
  2. <?php if (isset($error)):?>
  3. <p class="error">
  4. <?php h($error);?>
  5. </p>
  6. <?php endif;?>
  7. <?php if (isset($message)):?>
  8. <p class="message">
  9. <?php h($message);?>
  10. </p>
  11. <?php endif;?>
  12. <form method="post">
  13. <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="400">
  14. <tr bgcolor="#ffffff">
  15. <td width="100"><?php hm("name"); ?></td>
  16. <td><?php h($collection); ?></td>
  17. </tr>
  18. <tr>
  19. <td colspan="2"><strong>Capped Collection Options</strong></td>
  20. </tr>
  21. <tr bgcolor="#ffffff">
  22. <td><?php hm("iscapped"); ?></td>
  23. <td><input type="checkbox" name="is_capped" value="1" <?php if($isCapped):?>checked="checked"<?php endif;?> /></td>
  24. </tr>
  25. <tr bgcolor="#ffffff">
  26. <td><?php hm("size"); ?></td>
  27. <td><input type="text" name="size" value="<?php h($size);?>" size="10" /> bytes</td>
  28. </tr>
  29. <tr bgcolor="#ffffff">
  30. <td><?php hm("max"); ?></td>
  31. <td><input type="text" name="max" value="<?php h($max);?>" size="10" /> documents</td>
  32. </tr>
  33. <tr bgcolor="#ffffff">
  34. <td colspan="2"><input type="submit" value="<?php hm("save"); ?>" /></td>
  35. </tr>
  36. </table>
  37. </form>
  38. <div style="width:700px;margin-top:10px"><?php hm("warningprops"); ?></div>