Files
EasySoft-ZenTaoPMS/module/testtask/config/table.php
T

140 lines
8.2 KiB
PHP

<?php
global $lang, $app;
$app->loadLang('testcase');
$app->loadModuleConfig('testcase');
$config->testtask->actionList = array();
$config->testtask->actionList['start']['icon'] = 'play';
$config->testtask->actionList['start']['text'] = $lang->testtask->start;
$config->testtask->actionList['start']['hint'] = $lang->testtask->start;
$config->testtask->actionList['start']['url'] = helper::createLink('testtask', 'start', 'taskID={id}');
$config->testtask->actionList['close']['icon'] = 'off';
$config->testtask->actionList['close']['text'] = $lang->testtask->close;
$config->testtask->actionList['close']['hint'] = $lang->testtask->close;
$config->testtask->actionList['close']['url'] = helper::createLink('testtask', 'close', 'taskID={id}');
$config->testtask->actionList['block']['icon'] = 'pause';
$config->testtask->actionList['block']['text'] = $lang->testtask->block;
$config->testtask->actionList['block']['hint'] = $lang->testtask->block;
$config->testtask->actionList['block']['url'] = helper::createLink('testtask', 'block', 'taskID={id}');
$config->testtask->actionList['activate']['icon'] = 'magic';
$config->testtask->actionList['activate']['text'] = $lang->testtask->activate;
$config->testtask->actionList['activate']['hint'] = $lang->testtask->activate;
$config->testtask->actionList['activate']['url'] = helper::createLink('testtask', 'activate', 'taskID={id}');
$config->testtask->actionList['activate']['data-toggle'] = 'modal';
$config->testtask->actionList['cases']['icon'] = 'sitemap';
$config->testtask->actionList['cases']['text'] = $lang->testtask->cases;
$config->testtask->actionList['cases']['hint'] = $lang->testtask->cases;
$config->testtask->actionList['cases']['url'] = helper::createLink('testtask', 'cases', 'taskID={id}');
$config->testtask->actionList['linkCase']['icon'] = 'link';
$config->testtask->actionList['linkCase']['text'] = $lang->testtask->linkCase;
$config->testtask->actionList['linkCase']['hint'] = $lang->testtask->linkCase;
$config->testtask->actionList['linkCase']['url'] = helper::createLink('testtask', 'linkCase', 'taskID={id}&type=all&param=myQueryID');
$config->testtask->actionList['report']['icon'] = 'summary';
$config->testtask->actionList['report']['text'] = $lang->testtask->testreport;
$config->testtask->actionList['report']['hint'] = $lang->testtask->testreport;
$config->testtask->actionList['report']['url'] = helper::createLink('testreport', 'browse', 'objectID={product}&objectType=product&extra={id}');
$config->testtask->actionList['view']['icon'] = 'list-alt';
$config->testtask->actionList['view']['text'] = $lang->testtask->view;
$config->testtask->actionList['view']['hint'] = $lang->testtask->view;
$config->testtask->actionList['view']['url'] = helper::createLink('testtask', 'view', 'taskID={id}');
$config->testtask->actionList['view']['data-toggle'] = 'modal';
$config->testtask->actionList['edit']['icon'] = 'edit';
$config->testtask->actionList['edit']['text'] = $lang->testtask->edit;
$config->testtask->actionList['edit']['hint'] = $lang->testtask->edit;
$config->testtask->actionList['edit']['url'] = helper::createLink('testtask', 'edit', 'taskID={id}');
$config->testtask->actionList['delete']['icon'] = 'trash';
$config->testtask->actionList['delete']['text'] = $lang->testtask->delete;
$config->testtask->actionList['delete']['hint'] = $lang->testtask->delete;
$config->testtask->actionList['delete']['url'] = helper::createLink('testtask', 'delete', 'taskID={id}');
$config->testtask->dtable = new stdclass();
$config->testtask->dtable->fieldList['id']['name'] = 'id';
$config->testtask->dtable->fieldList['id']['title'] = $lang->idAB;
$config->testtask->dtable->fieldList['id']['type'] = 'id';
$config->testtask->dtable->fieldList['title']['name'] = 'name';
$config->testtask->dtable->fieldList['title']['title'] = $lang->testtask->name;
$config->testtask->dtable->fieldList['title']['type'] = 'title';
$config->testtask->dtable->fieldList['title']['link'] = helper::createLink('testtask', 'view', "taskID={id}");
$config->testtask->dtable->fieldList['title']['fixed'] = 'left';
$config->testtask->dtable->fieldList['build']['name'] = 'buildName';
$config->testtask->dtable->fieldList['build']['title'] = $lang->testtask->build;
$config->testtask->dtable->fieldList['build']['type'] = 'text';
$config->testtask->dtable->fieldList['build']['link'] = helper::createLink('build', 'view', "buildID={build}");
$config->testtask->dtable->fieldList['build']['group'] = 'text';
$config->testtask->dtable->fieldList['product']['name'] = 'productName';
$config->testtask->dtable->fieldList['product']['title'] = $lang->testtask->product;
$config->testtask->dtable->fieldList['product']['type'] = 'text';
$config->testtask->dtable->fieldList['product']['group'] = 'text';
$config->testtask->dtable->fieldList['execution']['name'] = 'executionName';
$config->testtask->dtable->fieldList['execution']['title'] = $lang->testtask->execution;
$config->testtask->dtable->fieldList['execution']['type'] = 'text';
$config->testtask->dtable->fieldList['execution']['group'] = 'text';
$config->testtask->dtable->fieldList['owner']['name'] = 'owner';
$config->testtask->dtable->fieldList['owner']['title'] = $lang->testtask->owner;
$config->testtask->dtable->fieldList['owner']['type'] = 'user';
$config->testtask->dtable->fieldList['owner']['group'] = 'user';
$config->testtask->dtable->fieldList['begin']['name'] = 'begin';
$config->testtask->dtable->fieldList['begin']['title'] = $lang->testtask->begin;
$config->testtask->dtable->fieldList['begin']['type'] = 'date';
$config->testtask->dtable->fieldList['begin']['group'] = 'user';
$config->testtask->dtable->fieldList['end']['name'] = 'end';
$config->testtask->dtable->fieldList['end']['title'] = $lang->testtask->end;
$config->testtask->dtable->fieldList['end']['type'] = 'date';
$config->testtask->dtable->fieldList['end']['group'] = 'user';
$config->testtask->dtable->fieldList['status']['name'] = 'status';
$config->testtask->dtable->fieldList['status']['title'] = $lang->testtask->status;
$config->testtask->dtable->fieldList['status']['type'] = 'status';
$config->testtask->dtable->fieldList['status']['statusMap'] = $lang->testtask->statusList;
$config->testtask->dtable->fieldList['actions']['name'] = 'actions';
$config->testtask->dtable->fieldList['actions']['title'] = $lang->actions;
$config->testtask->dtable->fieldList['actions']['type'] = 'actions';
$config->testtask->dtable->fieldList['actions']['sortType'] = false;
$config->testtask->dtable->fieldList['actions']['list'] = $config->testtask->actionList;
$config->testtask->dtable->fieldList['actions']['menu'] = array('cases', 'linkCase', 'report', 'view', 'edit', 'delete');
$config->testtask->testcase = new stdclass();
$config->testtask->testcase->dtable = new stdclass();
$config->testtask->testcase->dtable->fieldList['id']['name'] = 'id';
$config->testtask->testcase->dtable->fieldList['id']['title'] = $lang->idAB;
$config->testtask->testcase->dtable->fieldList['id']['type'] = 'checkID';
$config->testtask->testcase->dtable->fieldList['id']['fixed'] = 'left';
$config->testtask->testcase->dtable->fieldList['title']['name'] = 'title';
$config->testtask->testcase->dtable->fieldList['title']['title'] = $lang->testcase->title;
$config->testtask->testcase->dtable->fieldList['title']['type'] = 'title';
$config->testtask->testcase->dtable->fieldList['title']['link'] = helper::createLink('testcase', 'view', 'caseID={id}&version={version}&from=testtask&taskID={task}');
$config->testtask->testcase->dtable->fieldList['title']['fixed'] = 'left';
foreach($config->testcase->dtable->fieldList as $key => $fieldList)
{
if($key == 'id' || $key == 'title') continue;
$config->testtask->testcase->dtable->fieldList[$key] = $fieldList;
if($key == 'keywords')
{
$config->testtask->testcase->dtable->fieldList['assignedTo']['name'] = 'assignedTo';
$config->testtask->testcase->dtable->fieldList['assignedTo']['title'] = $lang->testcase->assignedTo;
$config->testtask->testcase->dtable->fieldList['assignedTo']['type'] = 'user';
}
}
$config->testtask->testcase->dtable->fieldList['actions']['menu'] = array('runCase', 'runResult', 'createBug', 'unlinkCase');