activate.html.php 746 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * The activate file of nc module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  6. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Yuting Wang<wangyuting@easycorp.ltd>
  8. * @package nc
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. $fields = defineFieldList('nc');
  13. $fields->field('assignedTo')->control('picker')->items($users)->value($this->app->user->account)->width('full');
  14. $fields->field('comment')->label($lang->comment)->control('editor')->width('full');
  15. formPanel
  16. (
  17. set::title($title),
  18. set::layout('horz'),
  19. set::fields($fields)
  20. );