create.html.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * The create view file of chart of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Chunsheng Wang <chunsheng@cnezsoft.com>
  8. * @package chart
  9. * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  14. <?php $biPath = $this->app->getModuleExtPath('bi', 'view');?>
  15. <div id='mainMenu' class='clearfix'>
  16. <div class='btn-toolbar pull-left'>
  17. <div class='page-title'>
  18. <span title='<?php echo $title;?>' class='text'><?php echo $title;?></span>
  19. </div>
  20. </div>
  21. </div>
  22. <div id='mainContent' class='main-content'>
  23. <div class='center-block'>
  24. <form method='post' target='hiddenwin' id='dataform' class="form-ajax">
  25. <table class='table table-form'>
  26. <tr>
  27. <th class='thWidth'><?php echo $lang->chart->group;?></th>
  28. <td class='w-400px'>
  29. <?php echo html::select('group[]', $groups, '', "class='chosen form-control' data-max_drop_width='200' multiple");?>
  30. </td>
  31. </tr>
  32. <tr>
  33. <th><?php echo $lang->chart->name;?></th>
  34. <td><?php echo html::input('name', '', "class='form-control'");?></td>
  35. </tr>
  36. <tr>
  37. <th><?php echo $lang->bi->driver;?></th>
  38. <td>
  39. <?php echo html::select('driver', $lang->bi->driverList, '', "class='chosen form-control' data-max_drop_width='200'");?>
  40. </td>
  41. </tr>
  42. <tr>
  43. <th><?php echo $lang->chart->desc;?></th>
  44. <td><?php echo html::textarea('desc', '', "rows='7' class='form-control'");?></td>
  45. </tr>
  46. <?php $acl = 'open';?>
  47. <?php $aclList = $lang->chart->aclList;?>
  48. <?php $whitelist = '';?>
  49. <?php include $biPath['common'] . 'aclbox.html.php';?>
  50. <tr>
  51. <td colspan='2' class='form-actions text-center'>
  52. <?php echo html::submitButton($lang->chart->nextStep);?>
  53. </td>
  54. </tr>
  55. </table>
  56. </form>
  57. </div>
  58. </div>
  59. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>