communicate.html.php 819 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The communicate file of stakeholder module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Wangy Yidong <yidong@cnezsoft.com>
  8. * @package stakeholder
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. modalHeader(set::entityID($user->id), set::entityText($user->name));
  13. formPanel
  14. (
  15. set::submitBtnText($lang->save),
  16. formGroup
  17. (
  18. set::label($lang->stakeholder->communicate),
  19. set::labelWidth(commonModel::checkNotCN() ? '110px' : '70px'),
  20. set::name('comment'),
  21. set::control('editor')
  22. )
  23. );
  24. hr();
  25. history(set::objectID($objectID));