minutes.html.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The minutes of meeting module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2024 禅道软件(青岛)有限公司(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 Qiyu Xie <xieqiyu@chandao.com>
  8. * @package minutes
  9. * @version $Id: minutes.html.php 4903 2024-08-13 19:32:59Z lyc $
  10. * @link https://www.zentao.net
  11. */
  12. namespace zin;
  13. modalHeader();
  14. formPanel
  15. (
  16. formGroup
  17. (
  18. setClass('minutesBox'),
  19. set::label($lang->meeting->minutes),
  20. set::name('minutes'),
  21. set::items($meeting->minutes),
  22. set::value($meeting->minutes),
  23. set::control(array('control' => 'editor', 'rows' => 6))
  24. ),
  25. formGroup
  26. (
  27. set::label($lang->meeting->files),
  28. $meeting->files ? fileList
  29. (
  30. set::files($meeting->files),
  31. set::fieldset(false),
  32. set::showDelete(false),
  33. set::showEdit(false),
  34. set::object($meeting)
  35. ) : null,
  36. fileSelector()
  37. ),
  38. set::submitBtnText($lang->save)
  39. );
  40. hr();
  41. history();