m.edit.html.php 1.2 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * The edit mobile view file of file module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2016 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Yidong Wang <yidong@cnezsoft.com>
  8. * @package file
  9. * @version $Id: index.html.php 3830 2016-05-18 09:34:17Z liugang $
  10. * @link http://www.ranzhico.com
  11. */
  12. ?>
  13. <div class='heading divider'>
  14. <div class='title'><strong><?php echo $lang->file->edit ?></strong></div>
  15. <nav class='nav'><a data-dismiss='display'><i class='icon-remove muted'></i></a></nav>
  16. </div>
  17. <form class='content box' data-form-refresh='#page' target='hiddenwin' method='post' id='editFileForm' action='<?php echo $this->createLink('file', 'edit', "fileID=$file->id")?>'>
  18. <div class='control'>
  19. <?php echo html::input('fileName', $file->title, "class='input'");?>
  20. <input type="hidden" name="extension" value="<?php echo $file->extension;?>"/>
  21. </div>
  22. <div class='footer has-padding'>
  23. <button type='submit' class='btn primary'><?php echo $lang->save ?></button>
  24. </div>
  25. </form>