create.html.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * The edit view file of roadmap module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2026 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Hao Sun <sunhao@chandao.com>
  8. * @package roadmap
  9. * @version $Id: editrelation.html.php 935 2024-08-08 15:14:24Z $
  10. * @link https://www.zentao.net
  11. */
  12. namespace zin;
  13. formPanel
  14. (
  15. set::title($lang->roadmap->edit),
  16. set::size('md'),
  17. $branches ? formGroup
  18. (
  19. set::label(sprintf($lang->roadmap->branch, $lang->product->branchName[$product->type])),
  20. set::name('branch'),
  21. set::width('1/2'),
  22. set::items($branches)
  23. ) : null,
  24. formGroup
  25. (
  26. set::label($lang->roadmap->name),
  27. set::name('name'),
  28. set::width('1/2')
  29. ),
  30. formGroup
  31. (
  32. set::label($lang->roadmap->begin),
  33. set::name('begin'),
  34. set::width('1/2'),
  35. set::control('date')
  36. ),
  37. formGroup
  38. (
  39. set::label($lang->roadmap->end),
  40. set::name('end'),
  41. set::width('1/2'),
  42. set::control('date')
  43. ),
  44. formGroup
  45. (
  46. set::label($lang->roadmap->desc),
  47. set::name('desc'),
  48. set::control('editor')
  49. )
  50. );