tasks.html.php 724 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * The tasks view file of story 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 Sun Guangming<sunguangming@easycorp.ltd>
  7. * @package story
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader(set::titleClass('icon icon-bar-chart'));
  12. $tableData = initTableData($tasks, $config->story->taskTable->fieldList, $this->story);
  13. dtable
  14. (
  15. set::groupDivider(true),
  16. set::userMap($users),
  17. set::cols($config->story->taskTable->fieldList),
  18. set::data($tableData)
  19. );