managestep.html.php 999 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * The managestep view file of deploy module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2024 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  5. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  6. * @author Yanyi Cao <caoyanyi@easycorp.ltd>
  7. * @package deploy
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. $app->rawMethod = 'steps';
  12. include 'nav.html.php';
  13. panel
  14. (
  15. div
  16. (
  17. set::id('deployMenu'),
  18. setClass('flex justify-between mb-2'),
  19. $headers
  20. ),
  21. formPanel
  22. (
  23. stepsEditor
  24. (
  25. set::name('title'),
  26. set::expectsName('content'),
  27. set::stepText($lang->deploy->title),
  28. set::expectText($lang->deploy->content),
  29. set::expectDisabled(false),
  30. $stepGroups ? set::data(array_values($stepGroups)) : null,
  31. set::postDataID(true)
  32. )
  33. )
  34. );