video_opensetting.tpl.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. defined('IN_ADMIN') or exit('No permission resources.');
  3. include $this->admin_tpl('header', 'admin');
  4. ?>
  5. <div class="pad-10">
  6. <div class="explain-col search-form">
  7. <?php echo L('setting_notic');?>
  8. </div>
  9. <div class="common-form">
  10. <form name="myform" action="?m=video&c=video&a=setting&pc_hash=<?php echo $_GET['pc_hash'];?>" method="post" id="myform">
  11. <fieldset>
  12. <legend><?php echo L('pass_settings');?></legend>
  13. <table width="100%" class="table_form">
  14. <tr>
  15. <td width="120"><?php echo L('vms_sn');?></td>
  16. <td><input name="setting[sn]" type="text" id="sn" size="40" value="<?php echo $this->setting['sn'];?>"> </td>
  17. </tr>
  18. <tr>
  19. <td width="120"><?php echo L('vms_skey');?></td>
  20. <td><input type="text" name="setting[skey]" size="40" value="<?php echo $this->setting['skey']?>" id="skey"></td>
  21. </tr>
  22. <tr>
  23. <td width="120"><?php echo L('default_video_to_cat');?> </td>
  24. <td> <?php echo $category_list;?></td>
  25. </tr>
  26. <tr>
  27. <td width="120"><?php echo L('video_api_url');?> </td>
  28. <td><?php echo APP_PATH;?>api.php?op=video_api (用于v.ku6vms.com 配置<font color="red">返回地址</font>使用)</td>
  29. </tr>
  30. </table>
  31. </fieldset>
  32. <div class="bk15"></div>
  33. <input name="dosubmit" type="submit" value="<?php echo L('submit')?>" class="button" id="dosubmit">
  34. </form>
  35. </div>
  36. </body>
  37. </html>