| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * The linkBug view file of productplan module of ZenTaoPMS.
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Wang Yidong <yidong@easycorp.ltd>
- * @package productplan
- * @link https://www.zentao.net
- */
- namespace zin;
- $cols = array();
- foreach($config->productplan->defaultFields['linkBug'] as $field) $cols[$field] = zget($config->bug->dtable->fieldList, $field, array());
- $cols = array_map(function($col){$col['show'] = true; return $col;}, $cols);
- $cols['assignedTo']['type'] = 'user';
- $cols['title']['data-toggle'] = 'modal';
- $cols['title']['data-size'] = 'lg';
- foreach($cols as $colKey => $colConfig) $cols[$colKey]['sort'] = true;
- searchForm
- (
- set('zui-key', 'searchForm'),
- set::module('bug'),
- set::simple(true),
- set::show(true),
- set::onSearch(jsRaw("window.onSearchLinks.bind(null, 'bug')"))
- );
- dtable
- (
- setID('unlinkBugList'),
- set::userMap($users),
- set::checkable(true),
- set::cols($cols),
- set::data(array_values($allBugs)),
- set::loadPartial(true),
- set::extraHeight('+144'),
- set::footToolbar(array
- (
- 'items' => array(array
- (
- 'text' => $lang->productplan->linkBug,
- 'btnType' => 'secondary',
- 'className' => 'size-sm linkObjectBtn',
- 'data-type' => 'bug',
- 'data-url' => inlink('linkBug', "planID=$plan->id&browseType=$browseType¶m=$param&orderBy=$orderBy"),
- 'zui-on-click' => 'handleLinkObjectClick($target)'
- ))
- )),
- set::footer(array('checkbox', 'toolbar', array('html' => html::a(inlink('view', "planID=$plan->id&type=bug&orderBy=$orderBy"), $lang->goback, '', "class='btn size-sm'")), 'flex', 'pager')),
- set::footPager(usePager())
- );
- render();
|