notify.html.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * The notify view file of release module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Shujie Tian<tianshujie@easycorp.ltd>
  7. * @package release
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. formPanel
  12. (
  13. set::id('notifyForm'),
  14. set::title($release->name . ' - ' . $lang->release->notify),
  15. set::shadow(false),
  16. set::actions(array('submit')),
  17. set::submitBtnText($lang->release->notify),
  18. formRow
  19. (
  20. formGroup
  21. (
  22. setclass('user-title'),
  23. $lang->release->notifyUsers
  24. )
  25. ),
  26. formRow
  27. (
  28. formGroup
  29. (
  30. checkList
  31. (
  32. setClass('flex-wrap'),
  33. set::name('notify[]'),
  34. set::value('FB'),
  35. set::items($lang->release->notifyList),
  36. set::inline(true)
  37. )
  38. )
  39. )
  40. );
  41. hr();
  42. history();
  43. /* ====== Render page ====== */
  44. render();