content_remove.tpl.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. defined('IN_ADMIN') or exit('No permission resources.');
  3. include $this->admin_tpl('header','admin');?>
  4. <div class="pad-10">
  5. <div class="content-menu ib-a blue line-x"><a href="javascript:;" class=on><em><?php echo L('remove');?></em></a>
  6. </div>
  7. <div class="bk10"></div>
  8. <form action="?m=content&c=content&a=remove" method="post" name="myform">
  9. <div class="table-list">
  10. <table width="100%" cellspacing="0">
  11. <thead>
  12. <tr>
  13. <th align="center" width="50%"><?php echo L('from_where');?></th>
  14. <th align="center" width="50%"><?php echo L('move_to_categorys');?></th>
  15. </tr>
  16. </thead>
  17. <tbody height="200" class="nHover td-line">
  18. <tr>
  19. <td align="center" rowspan="6">
  20. <input type="radio" name="fromtype" value="0" checked id="fromtype_1" onclick="if(this.checked){$('#frombox_1').show();$('#frombox_2').hide();}">从指定ID:
  21. <input type="radio" name="fromtype" value="1" id="fromtype_2" onclick="if(this.checked){$('#frombox_1').hide();$('#frombox_2').show();}">从指定栏目
  22. <div id="frombox_1" style="display:;">
  23. <textarea name="ids" style="height:280px;width:350px;"><?php echo $ids;?></textarea>
  24. <br/>
  25. <?php echo L('move_tips');?>
  26. </div>
  27. <div id="frombox_2" style="display:none;">
  28. <select name="fromid[]" id="fromid" multiple style="height:300px;width:350px;">
  29. <option value='0' style="background:#F1F3F5;color:blue;"><?php echo L('from_category');?></option>
  30. <?php echo $source_string;?>
  31. </select>
  32. <br>
  33. <font color="red">Tips:</font><?php echo L('ctrl_source_select');?>
  34. </div>
  35. </td>
  36. </tr>
  37. <tr>
  38. <td align="center" rowspan="6"><br>
  39. <select name="tocatid" id="tocatid" size="2" style="height:300px;width:350px;">
  40. <option value='0' style="background:#F1F3F5;color:blue;"><?php echo L('move_to_categorys');?></option>
  41. <?php echo $string;?>
  42. </select>
  43. </td>
  44. </tr>
  45. </tbody>
  46. </table>
  47. </div>
  48. <div class="btn">
  49. <input type="submit" class="button" value="<?php echo L('submit');?>" name="dosubmit"/>
  50. </div>
  51. </form>
  52. </div>